:root {
    --teal: #3f6f6d;
    --teal-hover: #335c5a;
    --teal-light: #e9f1ee;
    --deep: #2e4a49;
    --gold: #b09855;
    --gold-soft: #f3ecd8;
    --ink: #1e2f30;
    --body: #56696a;
    --muted: #8a9a98;
    --bg: #fdfdfb;
    --bg-tint: #f4f8f6;
    --line: #e4ebe9;
    --radius-card: 16px;
    --radius-btn: 999px;
    --radius-input: 11px;
}

/* ---- base ---------------------------------------------------------------- */
body {
    background: var(--bg);
    color: var(--body);
    font-family: 'Public Sans', -apple-system, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
}

h1, h2, h3, h4, .h1, .h2, .h3 {
    font-family: 'Source Serif 4', Georgia, serif;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: var(--ink);
}
h1, .h1 { font-size: 44px; line-height: 1.1; }
h2, .h2 { font-size: 36px; line-height: 1.15; }
h3, .h3 { font-size: 22px; }
@media (max-width: 640px) {
    h1, .h1 { font-size: 32px; }
    h2, .h2 { font-size: 28px; }
}

a { color: var(--teal); }
a:hover { color: var(--teal-hover); }

.pf-eyebrow {
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .14em;
    color: var(--gold);
    font-family: 'Public Sans', Arial, sans-serif;
}

/* ---- utility bar ---------------------------------------------------------- */
.top-bar {
    background: var(--deep);
    color: #d7e4e3;
    font-size: 13px;
    padding: 7px 0;
}
.top-bar a { color: #d7e4e3; text-decoration: none; }
.top-bar a:hover { color: #ffffff; }
.top-bar .pf-next-open a { color: #e9d9ae; font-weight: 700; }
.top-bar .pf-next-open a:hover { color: #f6ecc9; }
.top-bar .pf-util-sep { opacity: .45; margin: 0 8px; }

/* ---- header / nav ---------------------------------------------------------- */
.navbar {
    background: var(--bg) !important;
    border-bottom: 1px solid var(--line);
    position: sticky;
    top: 0;
    z-index: 1030;
    padding-top: 10px;
    padding-bottom: 10px;
}
.navbar img { max-width: 178px; height: auto; mix-blend-mode: multiply; }
.navbar .nav-link {
    color: #41544f;
    font-size: 14.5px;
    font-weight: 600;
    font-family: 'Public Sans', Arial, sans-serif;
}
.navbar .nav-link:hover { color: var(--teal); }
.navbar .nav-link.active {
    color: var(--teal);
    border-bottom: 2px solid var(--gold);
}
.navbar .dropdown-menu {
    border: 1px solid var(--line);
    border-radius: 12px;
    box-shadow: 0 10px 28px rgba(46, 74, 73, .09);
}
.navbar .dropdown-item { font-size: 14.5px; color: #41544f; }
.navbar .dropdown-item:hover { background: var(--teal-light); color: var(--teal); }

.pf-cta,
a.pf-cta {
    display: inline-block;
    background: var(--teal);
    color: #ffffff !important;
    font-size: 14.5px;
    font-weight: 700;
    font-family: 'Public Sans', Arial, sans-serif;
    padding: 11px 22px;
    border-radius: var(--radius-btn);
    text-decoration: none;
    white-space: nowrap;
    border: none;
    min-height: 44px;
}
.pf-cta:hover { background: var(--teal-hover); color: #ffffff; }

/* ---- buttons (site-wide) ---------------------------------------------------- */
.pfec-btn,
a.pfec-btn,
.btn-primary,
input[type=submit].btn,
.btn.btn-primary {
    background: var(--teal) !important;
    border-color: var(--teal) !important;
    color: #ffffff !important;
    font-weight: 700;
    font-family: 'Public Sans', Arial, sans-serif;
    border-radius: var(--radius-btn) !important;
    padding: 11px 26px;
    text-decoration: none;
    display: inline-block;
    vertical-align: middle;     /* inline-block buttons of differing heights were
                                   baseline-aligned = the stacked-offset look */
    line-height: 1.4;
    margin: 4px 8px 4px 0;
    box-sizing: border-box;
}
.pfec-btn:hover, .btn-primary:hover { background: var(--teal-hover) !important; border-color: var(--teal-hover) !important; }

.pf-btn-ghost,
.btn-secondary,
.btn-outline-secondary {
    background: #ffffff !important;
    border: 1.5px solid #c4d4d2 !important;
    color: var(--teal) !important;
    font-weight: 700;
    border-radius: var(--radius-btn) !important;
    padding: 10px 24px;         /* 1px less than primary: the 1.5px border evens the heights */
    text-decoration: none;
    display: inline-block;
    vertical-align: middle;
    line-height: 1.4;
    margin: 4px 8px 4px 0;
    box-sizing: border-box;
}
.pf-btn-ghost:hover, .btn-secondary:hover, .btn-outline-secondary:hover { border-color: var(--teal) !important; }

/* ---- cards / inputs ---------------------------------------------------------- */
.card, .pf-card {
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: var(--radius-card);
    transition: border-color .15s ease, box-shadow .15s ease, transform .15s ease;
}
.pf-card { padding: 26px 26px; }
.card:hover, .pf-card:hover {
    border-color: #9fbcba;
    box-shadow: 0 10px 28px rgba(46, 74, 73, .09);
    transform: translateY(-2px);
}

.form-control, input[type=text], input[type=email], input[type=tel], input[type=password], select, textarea {
    border-radius: var(--radius-input);
    border: 1px solid #cbd8d6;
}
.form-control:focus, input[type=text]:focus, input[type=email]:focus, input[type=tel]:focus, select:focus, textarea:focus {
    border-color: var(--teal);
    box-shadow: 0 0 0 4px rgba(63, 111, 109, .12);
    outline: none;
}

/* ---- next-opening strip (legacy .nxt-open kept for non-master consumers) ----- */
.nxt-open { background: var(--bg-tint); border-bottom: 1px solid var(--line); font-size: 14px; padding: 6px 0; }
.nxt-open a { color: var(--teal); font-weight: 700; text-decoration: none; }

/* ---- hero (homepage) ---------------------------------------------------------- */
.hero-wrapper {
    background: linear-gradient(180deg, #f4f8f6 0%, #fdfdfb 100%);
    border-bottom: 1px solid #ecf1ef;
    padding: 40px 0 48px 0;
}
.hero-content h1 { font-size: 48px; line-height: 1.08; }
@media (max-width: 640px) { .hero-content h1 { font-size: 34px; } }
.pf-hero-next { margin-top: 14px; font-size: 15px; font-weight: 700; }
.pf-hero-next a { color: var(--teal); text-decoration: none; }
.pf-hero-next a:hover { color: var(--teal-hover); }

.pf-hero-img-wrap { position: relative; }
.pf-hero-img-wrap .pf-hero-offset {
    position: absolute;
    top: 24px; right: -18px; bottom: -18px; left: 24px;
    background: #e4ecd9;
    border-radius: 28px;
}
.pf-hero-img-wrap img {
    position: relative;
    width: 100%;
    height: 380px;              /* CSS crop: the placeholder hero guy runs tall — cap and
                                   cover until the real stock photo arrives (Mike 2026-07-11) */
    object-fit: cover;
    object-position: center 25%;
    border-radius: 24px;
    display: block;
}

/* ---- homepage section helpers (used from Content_Text html) ------------------- */
.pf-section { padding: 60px 0; }
.pf-section-tint { background: var(--bg-tint); border-top: 1px solid #ecf1ef; border-bottom: 1px solid #ecf1ef; }
.pf-center { text-align: center; }

.pf-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; padding: 34px 0; }
.pf-stat { text-align: center; border-right: 1px solid #e7edeb; }
.pf-stat:last-child { border-right: none; }
.pf-stat .pf-stat-n { font-family: 'Source Serif 4', Georgia, serif; font-size: 34px; font-weight: 600; color: var(--teal); }
.pf-stat .pf-stat-l { font-size: 13.5px; font-weight: 600; color: #6e7f7e; margin-top: 2px; }
@media (max-width: 760px) { .pf-stats { grid-template-columns: 1fr 1fr; } .pf-stat:nth-child(2) { border-right: none; } }

.pf-grid3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 36px; }
@media (max-width: 900px) { .pf-grid3 { grid-template-columns: 1fr; } }
.pf-chip {
    width: 44px; height: 44px; border-radius: 12px;
    background: var(--teal-light);
    display: grid; place-items: center;
    font-family: 'Source Serif 4', Georgia, serif;
    font-size: 19px; font-weight: 700; color: var(--teal);
}

.pf-dark { background: var(--deep); color: #eef4f3; }
.pf-dark h2 { color: #ffffff; }
.pf-dark p { color: #b9cbc9; }
.pf-dark .pf-eyebrow { color: #cdbd8b; }
.pf-checks { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }
@media (max-width: 760px) { .pf-checks { grid-template-columns: 1fr; } }
.pf-check {
    display: flex; gap: 12px; align-items: flex-start;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 14px;
    padding: 15px 17px;
    font-size: 14.5px; line-height: 1.5; color: #e6eeed;
}
.pf-check .pf-tick {
    flex-shrink: 0; width: 22px; height: 22px; border-radius: 50%;
    background: #cdbd8b; color: var(--deep);
    display: grid; place-items: center;
    font-size: 13px; font-weight: 800; margin-top: 1px;
}

/* ---- shop product page ------------------------------------------------ */
/* row-hover swaps #imgProduct's src between differently-sized images — a fixed
   box with object-fit keeps the page from jumping (Mike's flicker, 2026-07-11) */
#imgProduct {
    width: 100%;
    max-width: 535px;
    height: 380px;
    object-fit: contain;
    object-position: center top;
    display: block;
}

/* ---- footer ---------------------------------------------------------- */
footer {
    background: var(--bg);
    border-top: 1px solid var(--line);
    color: var(--muted);
    font-size: 13.5px;
    padding: 26px 0;
    margin-top: 48px;
}
footer a { color: var(--muted); text-decoration: none; }
footer a:hover { color: var(--teal); }
footer .icon-phone { color: var(--muted) !important; }
