/* Cascade Dock & Waterfront — brand styles
   Colors: River #1B4353, Current #2D7A8A, Copper #A66B2E, Spray #82AEBB, Mist #EAF2F4, Deep navy
   Type: Outfit (web), Helvetica (print reference)
*/

:root {
  --river: #1B4353;
  --current: #2D7A8A;
  --copper: #A66B2E;
  --spray: #82AEBB;
  --mist: #EAF2F4;
  --deep: #10262E;
  --white: #FFFFFF;
  --ink: #1A2A2E;
  --max-width: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Outfit", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.55;
}

img { max-width: 100%; display: block; }

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

h1, h2, h3, h4 {
  font-family: "Outfit", sans-serif;
  color: var(--river);
  line-height: 1.15;
  margin: 0 0 0.5em;
  font-weight: 700;
}

h1 { font-size: clamp(2rem, 4vw, 3.2rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
h3 { font-size: 1.3rem; }

p { margin: 0 0 1em; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--mist);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}

.site-logo img { height: 42px; }

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 28px;
  margin: 0;
  padding: 0;
}

.main-nav a {
  color: var(--river);
  font-weight: 600;
  font-size: 0.95rem;
}

.main-nav a:hover { color: var(--current); text-decoration: none; }

.nav-cta {
  background: var(--copper);
  color: var(--white) !important;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 700 !important;
}
.nav-cta:hover { background: #8f5a25; text-decoration: none !important; }

.nav-toggle { display: none; }

@media (max-width: 820px) {
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--mist);
  }
  .main-nav.open { display: block; }
  .main-nav ul {
    flex-direction: column;
    gap: 0;
    padding: 8px 24px 20px;
  }
  .main-nav li { padding: 10px 0; border-bottom: 1px solid var(--mist); }
  .nav-toggle {
    display: block;
    background: none;
    border: none;
    font-size: 1.6rem;
    color: var(--river);
    cursor: pointer;
  }
}

/* Hero */
.hero {
  background: linear-gradient(135deg, var(--river) 0%, var(--current) 100%);
  color: var(--white);
  padding: 90px 0 70px;
}
.hero h1 { color: var(--white); }
.hero .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--spray);
  margin-bottom: 14px;
}
.hero p.lead {
  font-size: 1.15rem;
  max-width: 640px;
  color: var(--mist);
}
.hero-actions { margin-top: 28px; display: flex; gap: 16px; flex-wrap: wrap; }

.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--copper);
  color: var(--white);
}
.btn-primary:hover { background: #8f5a25; text-decoration: none; }
.btn-outline {
  background: transparent;
  border-color: var(--white);
  color: var(--white);
}
.btn-outline:hover { background: rgba(255,255,255,0.12); text-decoration: none; }

/* Page hero (interior pages, simpler) */
.page-hero {
  background: var(--mist);
  padding: 56px 0;
  border-bottom: 1px solid #dbe8ea;
}
.page-hero h1 { margin-bottom: 8px; }
.page-hero p { color: var(--river); font-size: 1.05rem; margin: 0; }

/* Sections */
section { padding: 64px 0; }
.section-alt { background: var(--mist); }
.section-header { max-width: 720px; margin-bottom: 40px; }
.section-header p { color: #3d5560; }

/* Cards / grid */
.grid {
  display: grid;
  gap: 28px;
}
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 900px) {
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
}

.card {
  background: var(--white);
  border: 1px solid var(--mist);
  border-radius: 10px;
  padding: 28px;
}
.card .icon-bar {
  width: 40px;
  height: 6px;
  background: var(--copper);
  border-radius: 3px;
  margin-bottom: 18px;
}
.card h3 { margin-bottom: 10px; }
.card p { color: #3d5560; margin-bottom: 0; }

/* Service area / stats strip */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  background: var(--river);
  color: var(--white);
  border-radius: 12px;
  padding: 36px;
  margin-top: 40px;
}
.stats-strip div { text-align: center; }
.stats-strip strong { display: block; font-size: 1.8rem; color: var(--spray); }
.stats-strip span { font-size: 0.9rem; color: var(--mist); }
@media (max-width: 760px) {
  .stats-strip { grid-template-columns: repeat(2, 1fr); }
}

/* CTA band */
.cta-band {
  background: var(--copper);
  color: var(--white);
  padding: 56px 0;
  text-align: center;
}
.cta-band h2 { color: var(--white); }
.cta-band p { color: var(--mist); max-width: 560px; margin: 0 auto 24px; }

/* Footer */
.site-footer {
  background: var(--deep);
  color: var(--mist);
  padding: 48px 0 28px;
  font-size: 0.92rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}
@media (max-width: 760px) {
  .footer-grid { grid-template-columns: 1fr; }
}
.site-footer h4 { color: var(--white); font-size: 1rem; margin-bottom: 14px; }
.site-footer a { color: var(--mist); }
.site-footer a:hover { color: var(--spray); }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 8px; }
.footer-logo img { height: 34px; margin-bottom: 14px; filter: brightness(0) invert(1); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  color: #9fb3ba;
  font-size: 0.85rem;
}

/* Forms */
.form-wrap {
  background: var(--white);
  border: 1px solid var(--mist);
  border-radius: 12px;
  padding: 36px;
  max-width: 640px;
}
.form-row { margin-bottom: 20px; }
label {
  display: block;
  font-weight: 600;
  color: var(--river);
  margin-bottom: 6px;
  font-size: 0.92rem;
}
input, select, textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #c7d7db;
  border-radius: 6px;
  font-family: inherit;
  font-size: 1rem;
  color: var(--ink);
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--current);
}
.form-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 600px) { .form-two-col { grid-template-columns: 1fr; } }

/* Contact info list */
.contact-info-list { list-style: none; padding: 0; margin: 0 0 24px; }
.contact-info-list li { margin-bottom: 14px; }
.contact-info-list strong { display: block; color: var(--river); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.04em; }

/* Blog / gallery */
.post-card {
  background: var(--white);
  border: 1px solid var(--mist);
  border-radius: 10px;
  overflow: hidden;
}
.post-card .post-image {
  height: 180px;
  background: linear-gradient(135deg, var(--spray), var(--current));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
  text-align: center;
  padding: 16px;
}
.post-card .post-body { padding: 22px; }
.post-tag {
  display: inline-block;
  background: var(--mist);
  color: var(--river);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
}

/* Utility */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
