/* ==========================================================================
   WaterStarters, Design system
   Adapted from the ISMG (Global Institute of Sustainability) system:
   Kollektif / Gilroy typography, editorial mega-menu, cream + navy sections.
   Palette shifted to water-blues + teal to match WaterStarters brand.
   ========================================================================== */

@font-face { font-family:"Kollektif"; font-style:normal; font-weight:400; font-display:swap; src:url("/fonts/Kollektif.ttf") format("truetype"); }
@font-face { font-family:"Kollektif"; font-style:italic; font-weight:400; font-display:swap; src:url("/fonts/Kollektif-Italic.ttf") format("truetype"); }
@font-face { font-family:"Kollektif"; font-style:normal; font-weight:700; font-display:swap; src:url("/fonts/Kollektif-Bold.ttf") format("truetype"); }
@font-face { font-family:"Kollektif"; font-style:italic; font-weight:700; font-display:swap; src:url("/fonts/Kollektif-BoldItalic.ttf") format("truetype"); }

@font-face { font-family:"Gilroy"; font-style:normal; font-weight:100 300; font-display:swap; src:url("/fonts/Gilroy-Light.otf") format("opentype"); }
@font-face { font-family:"Gilroy"; font-style:normal; font-weight:400 600; font-display:swap; src:url("/fonts/Gilroy-Medium.ttf") format("truetype"); }
@font-face { font-family:"Gilroy"; font-style:normal; font-weight:700 900; font-display:swap; src:url("/fonts/Gilroy-ExtraBold.otf") format("opentype"); }

@font-face { font-family:"Gill Sans"; font-style:normal; font-weight:100 500; font-display:swap; src:url("/fonts/GillSans.ttf") format("truetype"); }
@font-face { font-family:"Gill Sans"; font-style:normal; font-weight:500 600; font-display:swap; src:url("/fonts/GillSans-Medium.ttf") format("truetype"); }
@font-face { font-family:"Gill Sans"; font-style:normal; font-weight:700 900; font-display:swap; src:url("/fonts/GillSans-Bold.ttf") format("truetype"); }

*, *::before, *::after { box-sizing: border-box; }
html { font-synthesis: none; -webkit-font-synthesis: none; }
body { margin: 0; }

:root {
    /* WaterStarters palette, deep water navy, teal, sand */
    --ws-navy:      #0f2a4a;       /* deep water, primary brand */
    --ws-navy-700:  #143563;
    --ws-navy-500:  #1e4a80;
    --ws-ink:       #101a2d;
    --ws-text:      #1a2e3b;
    --ws-muted:     #5a6b78;
    --ws-line:      #dce6ec;
    --ws-bg:        #ffffff;
    --ws-bg-alt:    #f4f8fa;
    --ws-bg-cream:  #f5f0e2;       /* warm sand */
    --ws-accent:    #00897b;       /* WaterStarters teal */
    --ws-accent-700:#006f63;
    --ws-water:     #1f6f8b;
    --ws-gold:      #d69a2c;       /* amber accent */
    --ws-gold-light:#f2e2b5;
    --ws-success:   #2e7d4f;
    --ws-red:       #c62828;
    --ws-radius:    4px;
    --ws-radius-lg: 10px;
    --ws-shadow:    0 2px 8px rgba(15,42,74,.08);
    --ws-shadow-lg: 0 14px 34px rgba(15,42,74,.14);
    --ws-serif:     "Kollektif", "Gill Sans", "Gill Sans MT", "Helvetica Neue", Arial, sans-serif;
    --ws-sans:      "Kollektif", "Gilroy", "Manrope", "Inter", "Helvetica Neue", Arial, sans-serif;
}

html, body {
    font-family: var(--ws-sans);
    color: var(--ws-text);
    font-size: 16px;
    line-height: 1.65;
    background: var(--ws-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--ws-serif);
    color: var(--ws-navy);
    font-weight: 600;
    letter-spacing: -0.01em;
    line-height: 1.2;
    margin: 0 0 .55em;
}
h1 { font-size: 3.2rem; }
h2 { font-size: 2.4rem; }
h3 { font-size: 1.85rem; }
h4 { font-size: 1.45rem; }
h5 { font-size: 1.15rem; font-family: var(--ws-sans); font-weight: 600; }
h6 { font-size: .95rem; font-family: var(--ws-sans); font-weight: 700; letter-spacing: .04em; }

@media (max-width: 768px) {
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.8rem; }
    h3 { font-size: 1.45rem; }
}

p, li { color: var(--ws-text); font-size: 1rem; margin: 0 0 1em; }
p.lead { font-size: 1.15rem; line-height: 1.7; color: var(--ws-text); font-weight: 400; }
a { color: var(--ws-navy); text-decoration: none; transition: color .2s; }
a:hover { color: var(--ws-accent); }
ul, ol { margin: 0 0 1em; padding-left: 1.2em; }

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

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.row { display: flex; flex-wrap: wrap; margin: 0 -14px; }
.row > [class*="col-"] { padding: 0 14px; }
.col-4  { flex: 0 0 33.333%; max-width: 33.333%; }
.col-6  { flex: 0 0 50%;     max-width: 50%; }
.col-8  { flex: 0 0 66.666%; max-width: 66.666%; }
.col-12 { flex: 0 0 100%;    max-width: 100%; }
@media (max-width: 900px) {
    .col-4, .col-6, .col-8 { flex: 0 0 100%; max-width: 100%; }
}

/* Utilities */
.uppercase { letter-spacing: .08em; text-transform: uppercase; }
.text-center { text-align: center; }
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }

/* Buttons */
.btn {
    font-family: var(--ws-sans);
    font-weight: 600;
    letter-spacing: .04em;
    padding: 14px 28px;
    font-size: .95rem;
    transition: all .25s;
    border: 2px solid var(--ws-navy);
    color: var(--ws-navy);
    background: transparent;
    line-height: 1.2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    cursor: pointer;
    gap: 8px;
    text-decoration: none;
    border-radius: 0;
}
.btn:hover { background: var(--ws-navy); color: #fff; }
.btn-filled, .btn-primary {
    background: var(--ws-navy);
    color: #fff;
    border-color: var(--ws-navy);
}
.btn-filled:hover { background: var(--ws-navy-700); border-color: var(--ws-navy-700); color: #fff; }
.btn-accent { background: var(--ws-accent); color: #fff; border-color: var(--ws-accent); }
.btn-accent:hover { background: var(--ws-accent-700); border-color: var(--ws-accent-700); color: #fff; }
.btn-outline-light { background: transparent; color: #fff; border-color: #fff; }
.btn-outline-light:hover { background: #fff; color: var(--ws-navy); }
.btn-lg { padding: 16px 32px; font-size: 1rem; }
.btn-sm { padding: 8px 16px; font-size: .82rem; }
.btn-danger { border-color: var(--ws-red); color: var(--ws-red); background: transparent; }
.btn-danger:hover { background: var(--ws-red); color: #fff; }

/* Navigation ------------------------------------------------------------- */
.nav-container { box-shadow: var(--ws-shadow); position: relative; z-index: 100; background: #fff; }
.ws-mainnav { background: #fff; padding: 18px 0; }
.ws-mainnav .container { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.ws-logo { display: inline-flex; align-items: center; gap: 12px; color: var(--ws-navy); text-decoration: none; }
.ws-logo-img { height: 40px; width: auto; display: block; }
.ws-logo-img.on-dark { filter: brightness(0) invert(1); }

.ws-menu {
    list-style: none; margin: 0; padding: 0;
    display: flex; align-items: center; gap: 4px;
}
.ws-menu > li { position: relative; }
.ws-menu > li > a {
    display: inline-block;
    padding: 14px 16px;
    color: var(--ws-navy);
    font-weight: 600;
    font-size: .95rem;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: all .2s;
}
.ws-menu > li > a:hover {
    color: var(--ws-accent);
}
.ws-menu > li.active > a {
    color: var(--ws-accent);
    border-bottom-color: var(--ws-accent);
}
.ws-menu .has-children > a::after {
    content: "▾"; font-size: .7rem; margin-left: 6px; opacity: .6;
}

/* Mega menu */
.ws-mega {
    position: absolute;
    top: 100%; left: 0;
    background: #fff;
    box-shadow: 0 24px 48px rgba(15,42,74,.14);
    width: min(880px, 92vw);
    display: none;
    z-index: 200;
    border-radius: 0 0 10px 10px;
    overflow: hidden;
}
.ws-mega::before {
    content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--ws-accent) 0%, var(--ws-gold) 60%, var(--ws-water) 100%);
}
.ws-mega.right { left: auto; right: 0; }
.ws-menu li:hover > .ws-mega { display: block; }

.ws-mega-cols { display: grid; grid-template-columns: 1.7fr 1fr; }
.ws-mega-list { padding: 26px 28px 22px; background: #fff; }
.ws-mega-list h6 {
    font-size: .72rem; letter-spacing: .18em; text-transform: uppercase;
    color: var(--ws-muted); font-weight: 700; margin: 0 0 16px;
}
.ws-mega-item {
    display: flex; gap: 14px; padding: 10px 12px; border-radius: 6px;
    text-decoration: none; color: inherit;
    transition: background .15s; margin-bottom: 2px;
}
.ws-mega-item:hover { background: var(--ws-bg-alt); }
.ws-mega-item:hover .em-title { color: var(--ws-accent); }
.ws-mega-item .em-body { min-width: 0; }
.ws-mega-item .em-title {
    display: block; color: var(--ws-navy);
    font-size: .94rem; font-weight: 600;
    margin-bottom: 2px; line-height: 1.25;
    transition: color .15s;
}
.ws-mega-item .em-desc {
    display: block; color: var(--ws-muted);
    font-size: .8rem; line-height: 1.35;
}

.ws-mega-feature {
    background: var(--ws-navy);
    color: #fff;
    padding: 26px 26px 22px;
    display: flex; flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    min-height: 100%;
}
.ws-mega-feature::after {
    content: ""; position: absolute;
    right: -40px; bottom: -40px;
    width: 160px; height: 160px; border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(0,137,123,.35), transparent 70%);
    pointer-events: none;
}
.ws-mega-feature .em-kicker {
    display: block; color: var(--ws-gold);
    font-size: .68rem; letter-spacing: .2em;
    text-transform: uppercase; font-weight: 700;
    margin-bottom: 8px; position: relative; z-index: 2;
}
.ws-mega-feature h5 {
    color: #fff; font-family: var(--ws-serif);
    font-size: 1.1rem; line-height: 1.25;
    margin: 0 0 8px; position: relative; z-index: 2;
}
.ws-mega-feature p {
    color: #d8e3ee; font-size: .84rem;
    line-height: 1.5; margin: 0 0 14px;
    position: relative; z-index: 2;
}
.ws-mega-feature .em-cta {
    color: var(--ws-gold); font-weight: 700;
    font-size: .84rem; position: relative; z-index: 2;
    align-self: flex-start;
}
.ws-mega-feature .em-cta::after { content: " →"; }
.ws-mega-feature .em-cta:hover { color: #fff; }

.ws-cta-pill {
    display: inline-flex; align-items: center; justify-content: center;
    background: var(--ws-accent);
    color: #fff !important;
    padding: 10px 22px;
    font-size: .9rem; font-weight: 700;
    margin-left: 12px;
}
.ws-cta-pill:hover { background: var(--ws-accent-700); }

.ws-mobile-toggle { display: none; font-size: 1.6rem; cursor: pointer; color: var(--ws-navy); background: none; border: 0; padding: 4px; }
@media (max-width: 991px) {
    .ws-menu { display: none; }
    .ws-menu.open {
        display: flex; flex-direction: column; align-items: stretch;
        position: absolute; top: 100%; left: 0; right: 0;
        background: #fff; padding: 20px; box-shadow: var(--ws-shadow-lg);
    }
    .ws-menu.open > li { width: 100%; }
    .ws-menu.open > li > a { padding: 14px 0; border-bottom: 1px solid var(--ws-line); }
    .ws-mega { position: static; box-shadow: none; padding: 12px 0 0 16px; }
    .ws-mega-cols { grid-template-columns: 1fr; gap: 12px; }
    .ws-mobile-toggle { display: block; }
    .ws-cta-pill { margin-left: 0; margin-top: 8px; }
}

/* Hero ------------------------------------------------------------------- */
.ws-hero {
    position: relative;
    color: #fff;
    padding: 140px 0 120px;
    overflow: hidden;
    background: linear-gradient(135deg, #0a1e3a 0%, #144b74 55%, #1f6f8b 100%);
}
.ws-hero-bg {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    opacity: .45;
}
.ws-hero::after {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(115deg, rgba(10,30,58,.85) 0%, rgba(20,75,116,.55) 55%, rgba(31,111,139,.35) 100%);
    pointer-events: none;
}
.ws-hero .container { position: relative; z-index: 2; }
.ws-hero h1 { color: #fff; font-size: 3.6rem; line-height: 1.08; margin-bottom: 20px; }
.ws-hero p.lead { color: #e4edf5; font-size: 1.2rem; max-width: 640px; }
.ws-hero .ws-hero-actions { margin-top: 40px; display: flex; gap: 14px; flex-wrap: wrap; }
.ws-hero .ws-hero-actions .btn { background: #fff; color: var(--ws-navy); border-color: #fff; }
.ws-hero .ws-hero-actions .btn:hover { background: var(--ws-gold); border-color: var(--ws-gold); color: var(--ws-navy); }
.ws-hero .ws-hero-actions .btn-outline-light { background: transparent; color: #fff; }
.ws-hero .ws-hero-actions .btn-outline-light:hover { background: #fff; color: var(--ws-navy); }
.ws-hero-tagline {
    font-family: var(--ws-serif); font-style: italic;
    color: var(--ws-gold-light); font-size: 1rem; margin-top: 34px;
}
@media (max-width: 768px) {
    .ws-hero { padding: 80px 0 70px; }
    .ws-hero h1 { font-size: 2.2rem; }
}

/* Page head */
.ws-pagehead {
    background: var(--ws-navy);
    color: #fff;
    padding: 80px 0 68px;
    position: relative;
    overflow: hidden;
}
.ws-pagehead::after {
    content: ""; position: absolute;
    right: -80px; top: -60px; width: 320px; height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0,137,123,.25) 0%, transparent 70%);
}
.ws-pagehead .container { position: relative; z-index: 2; }
.ws-pagehead h1 { color: #fff; font-size: 2.8rem; margin-bottom: 10px; }
.ws-pagehead p { color: #d8e3ee; font-size: 1.1rem; max-width: 680px; margin: 0; }
.ws-breadcrumb { list-style: none; padding: 0; margin: 0 0 16px; font-size: .85rem; color: #b9c6d6; }
.ws-breadcrumb li { display: inline-block; }
.ws-breadcrumb li::after { content: "/"; padding: 0 10px; opacity: .5; }
.ws-breadcrumb li:last-child::after { content: ""; }
.ws-breadcrumb li a { color: var(--ws-gold); }
.ws-breadcrumb li.active { color: #fff; }

/* Sections --------------------------------------------------------------- */
.ws-section { padding: 88px 0; }
.ws-section.tight { padding: 56px 0; }
.ws-section.bg-cream { background: var(--ws-bg-cream); }
.ws-section.bg-alt { background: var(--ws-bg-alt); }
.ws-section.bg-navy { background: var(--ws-navy); color: #fff; }
.ws-section.bg-navy h1, .ws-section.bg-navy h2, .ws-section.bg-navy h3, .ws-section.bg-navy h4, .ws-section.bg-navy h5, .ws-section.bg-navy h6 { color: #fff; }
.ws-section.bg-navy p { color: #d8e3ee; }
@media (max-width: 768px) { .ws-section { padding: 56px 0; } }

.ws-section-head { max-width: 780px; margin: 0 auto 56px; text-align: center; }
.ws-section-head.left { text-align: left; margin-left: 0; }
.ws-section-head h2 { margin-bottom: 16px; }
.ws-section-head p.lead { color: var(--ws-muted); }

/* Grid + cards ----------------------------------------------------------- */
.ws-grid { display: grid; gap: 28px; }
.ws-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.ws-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.ws-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 991px) { .ws-grid.cols-3, .ws-grid.cols-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .ws-grid.cols-2, .ws-grid.cols-3, .ws-grid.cols-4 { grid-template-columns: 1fr; } }

.ws-card {
    background: #fff;
    border: 1px solid var(--ws-line);
    border-radius: var(--ws-radius-lg);
    overflow: hidden;
    transition: all .25s;
    height: 100%;
    display: flex; flex-direction: column;
    text-decoration: none; color: inherit;
}
.ws-card:hover { box-shadow: var(--ws-shadow-lg); transform: translateY(-3px); border-color: transparent; }
.ws-card .ws-card-img {
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, var(--ws-water) 0%, var(--ws-navy) 100%);
    background-size: cover; background-position: center;
    position: relative;
}
.ws-card .ws-card-tag {
    position: absolute; top: 14px; left: 14px;
    background: var(--ws-accent); color: #fff;
    padding: 5px 12px; border-radius: 999px;
    font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
}
.ws-card .ws-card-body { padding: 24px 26px; flex: 1; display: flex; flex-direction: column; }
.ws-card .ws-card-cat {
    font-size: .75rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
    color: var(--ws-accent); margin-bottom: 10px;
}
.ws-card h4 { font-size: 1.25rem; margin-bottom: 10px; line-height: 1.3; }
.ws-card .ws-card-desc { color: var(--ws-muted); font-size: .92rem; flex: 1; margin-bottom: 18px; }
.ws-card .ws-card-foot {
    padding: 16px 26px;
    background: var(--ws-bg-alt);
    border-top: 1px solid var(--ws-line);
    display: flex; justify-content: space-between; align-items: center;
    font-weight: 700; font-size: .88rem; color: var(--ws-navy);
}
.ws-card .ws-card-foot .cta::after { content: " →"; margin-left: 6px; transition: transform .2s; display: inline-block; }
.ws-card:hover .ws-card-foot .cta::after { transform: translateX(4px); }

/* Stats */
.ws-stats {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 1px; background: rgba(255,255,255,.15);
    border-radius: var(--ws-radius-lg); overflow: hidden;
}
.ws-stats > div { background: var(--ws-navy); padding: 36px 28px; text-align: center; }
.ws-stat-num {
    font-family: var(--ws-serif); font-size: 3.2rem; font-weight: 700;
    color: var(--ws-gold); line-height: 1; margin-bottom: 10px;
}
.ws-stat-label {
    color: #d8e3ee; font-size: .9rem;
    letter-spacing: .06em; text-transform: uppercase;
}
@media (max-width: 768px) { .ws-stats { grid-template-columns: repeat(2, 1fr); } .ws-stat-num { font-size: 2.4rem; } }

/* Steps */
.ws-steps {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 22px; counter-reset: step;
}
.ws-step {
    background: #fff; border: 1px solid var(--ws-line);
    border-radius: var(--ws-radius-lg);
    padding: 28px; counter-increment: step;
}
.ws-step::before {
    content: counter(step, decimal-leading-zero);
    font-family: var(--ws-serif); font-size: 2.4rem;
    color: var(--ws-gold); font-weight: 700;
    line-height: 1; display: block; margin-bottom: 14px;
}
.ws-step h4 { font-size: 1.15rem; margin-bottom: 8px; }
.ws-step p { color: var(--ws-muted); font-size: .92rem; margin: 0; }
@media (max-width: 991px) { .ws-steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .ws-steps { grid-template-columns: 1fr; } }

/* Feature */
.ws-feature { padding: 8px 0; }
.ws-feature .ws-feat-icon {
    width: 56px; height: 56px; border-radius: 50%;
    background: var(--ws-bg-cream); color: var(--ws-accent);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; margin-bottom: 18px;
}
.ws-feature h5 { color: var(--ws-navy); margin-bottom: 8px; font-size: 1.1rem; }
.ws-feature p { color: var(--ws-muted); font-size: .94rem; margin: 0; }

/* Quote */
.ws-quote {
    background: var(--ws-bg-cream);
    padding: 36px 40px;
    border-radius: var(--ws-radius-lg);
    position: relative;
}
.ws-quote blockquote {
    font-family: var(--ws-serif); font-size: 1.3rem; line-height: 1.5;
    color: var(--ws-navy); margin: 0 0 20px; font-style: italic;
    border: none; padding: 0;
}
.ws-quote cite {
    font-family: var(--ws-sans); font-style: normal;
    font-weight: 700; color: var(--ws-navy); display: block;
}
.ws-quote cite span { display: block; font-weight: 400; color: var(--ws-muted); font-size: .88rem; margin-top: 2px; }

/* Accordion */
.ws-accordion { border-top: 1px solid var(--ws-line); }
.ws-accordion details { border-bottom: 1px solid var(--ws-line); }
.ws-accordion summary {
    cursor: pointer; list-style: none;
    padding: 22px 40px 22px 0;
    font-weight: 600; color: var(--ws-navy);
    font-size: 1.05rem; position: relative;
}
.ws-accordion summary::-webkit-details-marker { display: none; }
.ws-accordion summary::after {
    content: "+"; position: absolute; right: 8px; top: 50%; transform: translateY(-50%);
    font-size: 1.6rem; color: var(--ws-accent); font-weight: 300; transition: transform .2s;
}
.ws-accordion details[open] summary::after { content: "−"; }
.ws-accordion .ws-acc-body { padding: 0 0 22px; color: var(--ws-text); }

/* CTA banner */
.ws-cta-banner {
    background: linear-gradient(120deg, var(--ws-navy) 0%, var(--ws-navy-700) 100%);
    color: #fff; padding: 80px 0; position: relative; overflow: hidden;
}
.ws-cta-banner::before {
    content: ""; position: absolute; width: 320px; height: 320px;
    background: var(--ws-accent); opacity: .2; border-radius: 50%;
    top: -80px; right: -80px;
}
.ws-cta-banner h2 { color: #fff; margin-bottom: 18px; }
.ws-cta-banner p { color: #d8e3ee; font-size: 1.1rem; }

/* Forms */
input[type="text"], input[type="email"], input[type="password"], input[type="tel"],
input[type="number"], input[type="search"], input[type="date"], select, textarea {
    width: 100%;
    padding: 12px 14px;
    font-size: 1rem;
    background: #fff;
    border: 1.5px solid var(--ws-line);
    border-radius: var(--ws-radius);
    color: var(--ws-text);
    margin-bottom: 14px;
    transition: border-color .2s, box-shadow .2s;
    font-family: var(--ws-sans);
}
input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--ws-accent);
    box-shadow: 0 0 0 3px rgba(0,137,123,.15);
}
label.ws-label {
    display: block; font-weight: 600; color: var(--ws-navy);
    margin-bottom: 6px; font-size: .9rem;
}
.ws-form-card {
    background: #fff; border: 1px solid var(--ws-line);
    border-radius: var(--ws-radius-lg); padding: 40px;
    box-shadow: var(--ws-shadow);
}

.ws-flash {
    padding: 12px 16px; border-radius: 6px; margin-bottom: 20px; font-size: .92rem;
}
.ws-flash.error { background: #fbe6e2; color: #7a2418; border: 1px solid #f5c4bb; }
.ws-flash.success { background: #e2f0e5; color: #1e4f34; border: 1px solid #b9d9c1; }

/* Honeypot field on the public forms. Positioned away rather than hidden with
   display:none, which the cruder form fillers know to check for. */
.ws-hp {
    position: absolute; left: -9999px; top: auto;
    width: 1px; height: 1px; overflow: hidden;
}

/* Footer ---------------------------------------------------------------- */
footer.ws-footer {
    background: var(--ws-navy);
    color: #c0cbd8;
    padding: 80px 0 0;
    margin-top: 0;
}
footer.ws-footer h6.ws-foot-title {
    color: #fff; font-family: var(--ws-sans);
    font-weight: 700; font-size: .85rem;
    letter-spacing: .12em; text-transform: uppercase;
    margin-bottom: 20px; padding-bottom: 12px;
    border-bottom: 1px solid rgba(255,255,255,.12);
}
footer.ws-footer .ws-foot-list { list-style: none; padding: 0; margin: 0; }
footer.ws-footer .ws-foot-list li { margin-bottom: 12px; font-size: .9rem; line-height: 1.5; }
footer.ws-footer .ws-foot-list li a { color: #c0cbd8; }
footer.ws-footer .ws-foot-list li a:hover { color: var(--ws-gold); }
footer.ws-footer .ws-foot-office { margin-bottom: 22px; padding-bottom: 18px; border-bottom: 1px solid rgba(255,255,255,.08); }
footer.ws-footer .ws-foot-office:last-child { border-bottom: none; }
footer.ws-footer .ws-foot-office strong { color: #fff; display: block; margin-bottom: 6px; font-size: .92rem; }
footer.ws-footer .ws-foot-office span { display: block; font-size: .85rem; color: #b9c6d6; line-height: 1.6; }
footer.ws-footer .ws-foot-bottom {
    margin-top: 60px; padding: 24px 0;
    border-top: 1px solid rgba(255,255,255,.12);
    background: rgba(0,0,0,.18);
    font-size: .82rem;
}
footer.ws-footer .ws-foot-bottom .container {
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 14px;
}
footer.ws-footer .ws-foot-bottom a { color: #c0cbd8; }
footer.ws-footer .ws-foot-bottom a:hover { color: #fff; }
footer.ws-footer .ws-social { display: flex; gap: 10px; list-style: none; padding: 0; margin: 12px 0 0; }
footer.ws-footer .ws-social li a {
    width: 36px; height: 36px; border-radius: 50%;
    background: rgba(255,255,255,.10);
    display: inline-flex; align-items: center; justify-content: center;
    color: #fff; transition: all .2s;
}
footer.ws-footer .ws-social li a:hover { background: var(--ws-accent); color: #fff; }
footer.ws-footer .ws-foot-newsletter {
    background: rgba(255,255,255,.05); padding: 20px;
    border-radius: var(--ws-radius-lg); margin-bottom: 24px;
}
footer.ws-footer .ws-foot-newsletter p { color: #b9c6d6; font-size: .9rem; margin-bottom: 12px; }
footer.ws-footer .ws-foot-newsletter input[type="email"] {
    background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.18); color: #fff;
}
footer.ws-footer .ws-foot-newsletter input[type="email"]::placeholder { color: #95a3b5; }

/* Auth split screen ------------------------------------------------------ */
.ws-auth { min-height: 100vh; display: flex; background: #fff; }
.ws-auth-side {
    width: 42%; position: relative;
    background: linear-gradient(155deg, #0a1e3a 0%, #144b74 55%, #1f6f8b 100%);
    color: #fff; display: flex; flex-direction: column;
    justify-content: space-between; padding: 44px 52px; overflow: hidden;
}
.ws-auth-side::after {
    content: ""; position: absolute;
    right: -80px; bottom: -80px; width: 320px; height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0,137,123,.35) 0%, transparent 70%);
}
.ws-auth-side > * { position: relative; z-index: 2; }
.ws-auth-message h2 { color: #fff; font-family: var(--ws-serif); font-size: 2.3rem; line-height: 1.18; margin-bottom: 16px; max-width: 460px; }
.ws-auth-message p { color: #d8e3ee; font-size: 1.02rem; line-height: 1.6; max-width: 440px; margin: 0; }
.ws-auth-message .kicker { display: inline-block; font-size: .74rem; letter-spacing: .18em; text-transform: uppercase; color: var(--ws-gold); margin-bottom: 14px; font-weight: 700; }
.ws-auth-foot { font-size: .88rem; color: #c8d2df; }
.ws-auth-foot a { color: var(--ws-gold); }
.ws-auth-main { flex: 1; display: flex; align-items: center; justify-content: center; padding: 40px 32px; background: #fff; }
.ws-auth-form { width: 100%; max-width: 400px; }
.ws-auth-form h1 { font-family: var(--ws-serif); font-size: 2rem; line-height: 1.2; margin-bottom: 8px; color: var(--ws-navy); }
.ws-auth-form .subhead { color: var(--ws-muted); font-size: .95rem; line-height: 1.5; margin-bottom: 28px; }
.ws-auth-form label { display: block; font-size: .74rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ws-muted); font-weight: 700; margin-bottom: 6px; margin-top: 18px; }
.ws-auth-form button { width: 100%; margin-top: 26px; }
.ws-auth-alt { margin-top: 32px; padding-top: 20px; border-top: 1px solid var(--ws-line); font-size: .88rem; color: var(--ws-muted); line-height: 1.6; }
.ws-auth-alt a { color: var(--ws-navy); font-weight: 600; }
@media (max-width: 840px) {
    .ws-auth { flex-direction: column; }
    .ws-auth-side { width: 100%; padding: 28px; min-height: 200px; }
    .ws-auth-message h2 { font-size: 1.6rem; }
}

/* Misc */
.ws-divider { border: none; border-top: 1px solid var(--ws-line); margin: 40px 0; }
.ws-pill {
    display: inline-block; padding: 5px 12px;
    background: var(--ws-bg-cream); color: var(--ws-navy);
    font-size: .78rem; font-weight: 700;
    letter-spacing: .04em; border-radius: 999px;
}
.ws-pill-accent { background: var(--ws-accent); color: #fff; }
.ws-pill-gold { background: var(--ws-gold); color: var(--ws-navy); }
.ws-pill-status { background: #e2f0e5; color: #1e4f34; }
.ws-pill-status.planned { background: #fff3e0; color: #b34700; }
.ws-pill-status.construction { background: #e3f2fd; color: #0b3d61; }

.ws-checklist { list-style: none; padding: 0; margin: 0; }
.ws-checklist li {
    padding: 10px 0 10px 32px; position: relative;
    border-bottom: 1px solid var(--ws-line);
}
.ws-checklist li::before {
    content: "✓"; position: absolute; left: 0; top: 8px;
    color: var(--ws-success); font-weight: 700; font-size: 1.1rem;
}
.ws-checklist li:last-child { border-bottom: none; }

.ws-back-to-top {
    position: fixed; right: 24px; bottom: 24px;
    background: var(--ws-accent); color: #fff;
    border: none; border-radius: 50%;
    width: 44px; height: 44px;
    z-index: 50; box-shadow: var(--ws-shadow-lg);
    display: inline-flex; align-items: center; justify-content: center;
    text-decoration: none;
}
.ws-back-to-top:hover { background: var(--ws-accent-700); color: #fff; }
