/* ============================================================
   Watamu Marine Excursions — site theme
   ============================================================ */

:root {
    --k-primary: #0f6b5c;
    --k-primary-dark: #0a4f44;
    --k-accent: #e07a3d;
    --k-accent-dark: #c45f28;
    --k-ink: #1a2b28;
    --k-muted: #5c6f6a;
    --k-line: #d5e4df;
    --k-surface: #eef6f3;
    --k-white: #ffffff;
    --w-sand: #f3efe6;
    --font-body: 'Lato', sans-serif;
    --font-heading: 'Lato', sans-serif;

    --k-gutter: 34px;
    --k-nav-height: 46px;
}

/* ---------- Layout shell ---------- */

body {
    color: var(--k-ink);
    background: var(--k-white);
}

/* Guest storefront uses Bootstrap .container (not full-bleed). */
.k-container {
    width: 100%;
    max-width: 1140px;
    margin-inline: auto;
    padding-inline: 1rem;
}

/* Long form copy stays readable inside the full width shell. */
.k-prose,
.policy-content,
.blog-content {
    max-width: 900px;
    margin-inline: auto;
}

/* Shared typography for the about, contact and legal pages, so each blade does
   not carry its own copy of it. */
.policy-content {
    font-size: 1.03rem;
    line-height: 1.75;
    color: var(--k-ink);
}

.policy-content h2 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--k-primary);
    margin: 2.4rem 0 0.9rem;
}

.policy-content h2:first-child {
    margin-top: 0;
}

.policy-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--k-ink);
    margin: 1.6rem 0 0.6rem;
}

.policy-content p {
    margin-bottom: 1rem;
}

.policy-content ul,
.policy-content ol {
    margin-bottom: 1.4rem;
    padding-left: 1.4rem;
}

.policy-content li {
    margin-bottom: 0.45rem;
}

.policy-content a {
    color: var(--k-accent);
}

.policy-content table {
    width: 100%;
    margin-bottom: 1.5rem;
}

/* Attribute and value pairs. Keeps the key facts on a page machine readable as
   well as easy to scan. */
.k-facts {
    display: grid;
    grid-template-columns: max-content 1fr;
    gap: 10px 24px;
    margin: 0 0 1.6rem;
    padding: 20px 24px;
    background: var(--k-surface);
    border: 1px solid var(--k-line);
}

.k-facts dt {
    font-weight: 700;
    color: var(--k-primary);
}

.k-facts dd {
    margin: 0;
}

@media (max-width: 575.98px) {
    .k-facts {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .k-facts dt {
        margin-top: 10px;
    }

    .k-facts dt:first-child {
        margin-top: 0;
    }
}

.k-section {
    padding: 38px 0;
}

.k-section--tight {
    padding: 22px 0;
}

.k-section--surface {
    background: var(--k-surface);
}

/* ---------- Utility bar ---------- */

.k-utility {
    background: var(--k-primary);
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.78rem;
    letter-spacing: 0.02em;
}

.k-utility a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
}

.k-utility a:hover {
    color: var(--k-white);
}

.k-utility__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    min-height: 34px;
    flex-wrap: wrap;
}

/* ---------- Header ---------- */

.k-header {
    background: var(--k-white);
    border-bottom: 1px solid var(--k-line);
}

.k-header__inner {
    display: flex;
    align-items: center;
    gap: 22px;
    padding: 14px 0;
}

.k-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
}

.k-logo__mark {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    background: var(--k-primary);
    color: var(--k-white);
    font-weight: 400;
    font-size: 1.25rem;
    letter-spacing: -0.02em;
}

.k-logo__mark--img {
    display: block;
    object-fit: contain;
    background: transparent;
    color: inherit;
    font-size: inherit;
    padding: 0;
}

.k-logo__text {
    line-height: 1.05;
}

.k-logo__name {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--k-primary);
    letter-spacing: -0.01em;
}

.k-logo__tag {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--k-accent);
    letter-spacing: 0.04em;
}

.k-search {
    flex: 1 1 auto;
    max-width: 460px;
}

.k-search form {
    display: flex;
}

.k-search input {
    flex: 1 1 auto;
    border: 1px solid var(--k-line);
    border-right: 0;
    padding: 9px 14px;
    font-size: 0.9rem;
    outline: none;
    min-width: 0;
}

.k-search input:focus {
    border-color: var(--k-primary);
}

.k-search button {
    border: 0;
    background: var(--k-primary);
    color: var(--k-white);
    padding: 9px 22px;
    font-size: 0.9rem;
    cursor: pointer;
}

.k-search button:hover {
    background: var(--k-primary-dark);
}

.k-header__actions {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-left: auto;
}

.k-social {
    display: flex;
    gap: 8px;
}

.k-social a {
    display: grid;
    place-items: center;
    width: 28px;
    height: 28px;
    background: var(--k-surface);
    color: var(--k-primary);
    font-size: 0.82rem;
    text-decoration: none;
    transition: background 0.15s ease, color 0.15s ease;
}

.k-social a:hover {
    background: var(--k-primary);
    color: var(--k-white);
}

.k-header__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--k-accent);
    color: var(--k-white);
    padding: 9px 18px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
}

.k-header__cta:hover {
    background: var(--k-accent-dark);
    color: var(--k-white);
}

/* ---------- Primary navigation ---------- */

.k-nav {
    background: var(--k-white);
    border-bottom: 1px solid var(--k-line);
    position: sticky;
    top: 0;
    z-index: 1030;
}

.k-nav__inner {
    display: flex;
    align-items: stretch;
    gap: 2px;
    flex-wrap: wrap;
}

.k-nav__item {
    position: relative;
}

.k-nav__link {
    display: flex;
    align-items: center;
    gap: 6px;
    height: var(--k-nav-height);
    padding: 0 13px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #121f1c;
    text-decoration: none;
    white-space: nowrap;
    border-bottom: 3px solid transparent;
}

.k-nav__link:hover,
.k-nav__item.is-active > .k-nav__link {
    color: var(--k-primary);
    border-bottom-color: var(--k-accent);
}

.k-nav__panel {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 280px;
    background: var(--k-white);
    border: 1px solid var(--k-line);
    box-shadow: 0 14px 34px rgba(16, 32, 48, 0.13);
    padding: 10px 0;
    display: none;
    z-index: 40;
}

.k-nav__item:hover .k-nav__panel,
.k-nav__item:focus-within .k-nav__panel {
    display: block;
}

.k-nav__panel a {
    display: block;
    padding: 7px 18px;
    font-size: 0.86rem;
    color: var(--k-ink);
    text-decoration: none;
}

.k-nav__panel a:hover {
    background: var(--k-surface);
    color: var(--k-primary);
}

.k-nav__panel-all {
    border-top: 1px solid var(--k-line);
    margin-top: 8px;
    padding-top: 8px;
}

.k-nav__panel-all a {
    font-weight: 600;
    color: var(--k-accent);
}

.k-nav__toggle {
    display: none;
    align-items: center;
    gap: 8px;
    border: 0;
    background: none;
    height: var(--k-nav-height);
    padding: 0 6px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #121f1c;
}

/* ---------- Hero ---------- */

.k-hero {
    padding: 18px 0 6px;
}

/* The photograph runs the full width of the banner; the copy sits over its left
   third under a translucent wash. */
.k-hero__banner {
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    border: 4px solid var(--k-primary);
    background: var(--k-primary-dark);
    min-height: 540px;
}

/* cover crops the overflow rather than squashing it, so the photo never
   distorts whatever shape the banner ends up. */
.k-hero__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
    display: block;
    z-index: 0;
}

/* Navy wash: dense enough on the left to carry white text, gone by the right so
   the photograph reads at full strength. */
.k-hero__banner::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        90deg,
        rgba(10, 79, 68, 0.93) 0%,
        rgba(15, 107, 92, 0.88) 26%,
        rgba(15, 107, 92, 0.62) 46%,
        rgba(15, 107, 92, 0.24) 68%,
        rgba(15, 107, 92, 0) 88%
    );
}

.k-hero__copy {
    position: relative;
    z-index: 2;
    max-width: 640px;
    padding: 56px 46px;
    color: var(--k-white);
    text-align: left;
}

.k-hero__title {
    color: var(--k-white);
    font-size: clamp(1.9rem, 5vw, 3.4rem);
    font-weight: 300;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    margin-bottom: 10px;
    text-shadow: 0 3px 14px rgba(0, 0, 0, 0.35);
}

.k-hero__subtitle {
    font-size: clamp(0.95rem, 2vw, 1.3rem);
    font-weight: 300;
    color: #ffd4b8;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.k-hero__lead {
    font-size: 1.02rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    max-width: 540px;
    margin: 0 0 24px;
}

.k-hero__actions {
    display: flex;
    justify-content: flex-start;
    gap: 12px;
    flex-wrap: wrap;
}

/* ---------- Buttons ---------- */

.k-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 24px;
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-decoration: none;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.15s ease;
}

.k-btn--primary {
    background: var(--k-accent);
    border-color: var(--k-accent);
    color: var(--k-white);
}

.k-btn--primary:hover {
    background: var(--k-accent-dark);
    border-color: var(--k-accent-dark);
    color: var(--k-white);
}

.k-btn--ghost {
    background: transparent;
    border-color: var(--k-white);
    color: var(--k-white);
}

.k-btn--ghost:hover {
    background: var(--k-white);
    color: var(--k-primary);
}

.k-btn--outline {
    background: transparent;
    border-color: var(--k-primary);
    color: var(--k-primary);
}

.k-btn--outline:hover {
    background: var(--k-primary);
    color: var(--k-white);
}

.k-btn--wa {
    background: #25d366;
    border-color: #25d366;
    color: #fff;
}

.k-btn--wa:hover {
    background: #1da851;
    border-color: #1da851;
    color: #fff;
}

/* ---------- Section intro ---------- */

.k-intro {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 26px;
}

.k-intro h2 {
    font-size: clamp(1.15rem, 2.4vw, 1.55rem);
    font-weight: 700;
    line-height: 1.45;
    margin-bottom: 8px;
}

.k-intro p {
    color: var(--k-muted);
    margin: 0;
}

.k-section-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
    border-bottom: 2px solid var(--k-line);
    padding-bottom: 10px;
}

.k-section-head h2 {
    font-size: 1.25rem;
    font-weight: 300;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.k-section-head a {
    font-size: 0.83rem;
    font-weight: 600;
    color: var(--k-accent);
    text-decoration: none;
    white-space: nowrap;
}

/* ---------- Category strip (vertical label cards) ---------- */

/* Always a single row. Column count is passed per section as --cols so a
   department with four subcategories fills the row instead of leaving a gap. */
.k-strip {
    display: grid;
    grid-template-columns: repeat(var(--cols, 6), minmax(0, 1fr));
    gap: 10px;
}

.k-tile {
    position: relative;
    display: block;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: var(--k-surface);
    text-decoration: none;
    border: 1px solid var(--k-line);
}

.k-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.k-tile:hover img {
    transform: scale(1.06);
}

.k-tile__fallback {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    color: rgba(20, 64, 107, 0.35);
    font-size: 2.2rem;
    background: repeating-linear-gradient(45deg, #eef1f4, #eef1f4 12px, #e6eaef 12px, #e6eaef 24px);
}

/* Caption bar across the foot of the tile. */
.k-tile__label {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(20, 64, 107, 0.9);
    color: var(--k-white);
    padding: 9px 8px;
    text-align: center;
}

.k-tile__label span {
    display: block;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    line-height: 1.25;
    text-transform: uppercase;
}

.k-tile__count {
    position: absolute;
    right: 8px;
    top: 8px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--k-primary);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 3px 8px;
}

/* ---------- Department banner ---------- */

.k-banner {
    position: relative;
    display: block;
    overflow: hidden;
    background: var(--k-primary);
    min-height: 150px;
}

.k-banner img {
    width: 100%;
    display: block;
    object-fit: cover;
}

.k-banner__overlay {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    text-align: center;
    padding: 30px 20px;
    background: linear-gradient(90deg, rgba(14, 47, 79, 0.85) 0%, rgba(14, 47, 79, 0.45) 50%, rgba(14, 47, 79, 0.85) 100%);
}

.k-banner__overlay h2 {
    color: var(--k-white);
    font-size: clamp(1.3rem, 3.2vw, 2.2rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin: 0;
}

.k-banner--flat {
    display: grid;
    place-items: center;
    padding: 34px 20px;
    text-align: center;
}

.k-banner--flat h2 {
    color: var(--k-white);
    font-size: clamp(1.3rem, 3.2vw, 2rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0 0 6px;
}

.k-banner--flat p {
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

/* ---------- Product cards ---------- */

.k-grid {
    display: grid;
    grid-template-columns: repeat(var(--cols, 4), minmax(0, 1fr));
    gap: 16px;
}

/* Listing pages wrap onto as many rows as the results need. Compounded so the
   responsive column overrides below do not cancel it out. */
.k-grid.k-grid--fill {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}

/* Centred outline link that sits under a single row section. */
.k-more {
    display: flex;
    justify-content: center;
    margin-top: 22px;
}

.k-card {
    display: flex;
    flex-direction: column;
    background: var(--k-white);
    border: 1px solid var(--k-line);
    height: 100%;
    text-decoration: none;
    color: inherit;
    transition: box-shadow 0.18s ease, transform 0.18s ease;
}

.k-card:hover {
    box-shadow: 0 12px 26px rgba(16, 32, 48, 0.12);
    transform: translateY(-2px);
    color: inherit;
}

.k-card__media {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--k-surface);
}

.k-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.k-card__flag {
    position: absolute;
    top: 8px;
    left: 8px;
    background: var(--k-accent);
    color: var(--k-white);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 4px 9px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.18);
}

.k-card__flag--new {
    background: var(--k-primary);
}

/* Stacked flags when a product is both new and discounted. */
.k-card__flags {
    position: absolute;
    top: 8px;
    left: 8px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
    z-index: 2;
}

.k-card__flags .k-card__flag,
.k-price .k-card__flag {
    position: static;
}

.k-price .k-card__flag {
    align-self: center;
    box-shadow: none;
}

.k-card__body {
    padding: 12px 14px 14px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    flex: 1 1 auto;
}

.k-card__eyebrow {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--k-muted);
}

.k-card__title {
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.35;
    margin: 0;
}

/* ---------- Price block (shared by cards and the product page) ---------- */

.k-price {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 4px 8px;
}

.k-price__now {
    font-weight: 700;
    color: var(--k-primary);
}

.k-price.is-discounted .k-price__now {
    color: var(--k-accent);
}

.k-price__was {
    font-weight: 500;
    color: var(--k-muted);
    text-decoration: line-through;
    text-decoration-thickness: 1px;
    text-decoration-color: rgba(107, 119, 133, 0.7);
}

.k-price__save {
    flex-basis: 100%;
    font-size: 0.74rem;
    font-weight: 600;
    color: #2e7d32;
    letter-spacing: 0.01em;
}

/* Size / seating line under the product name. */
.k-card__meta {
    font-size: 0.78rem;
    color: var(--k-muted);
}

.k-card__price {
    margin-top: auto;
    padding-top: 6px;
    font-size: 1.02rem;
}

.k-card__price .k-price__was {
    font-size: 0.82rem;
}

/* Larger variant on the product detail page. */
.k-price--lg {
    font-size: 1.7rem;
}

.k-price--lg .k-price__was {
    font-size: 1rem;
}

.k-price--lg .k-price__save {
    font-size: 0.86rem;
}

.k-card__stock {
    font-size: 0.74rem;
    color: #2e7d32;
}

.k-card__stock--out {
    color: var(--k-muted);
}

/* ---------- Simple link cards (subcategories) ---------- */

.k-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.k-chip {
    display: inline-block;
    padding: 7px 14px;
    background: var(--k-surface);
    border: 1px solid var(--k-line);
    font-size: 0.83rem;
    color: var(--k-ink);
    text-decoration: none;
}

.k-chip:hover,
.k-chip.is-active {
    background: var(--k-primary);
    border-color: var(--k-primary);
    color: var(--k-white);
}

/* ---------- Breadcrumbs ---------- */

.k-crumbs {
    font-size: 0.8rem;
    color: var(--k-muted);
    padding: 12px 0;
}

.k-crumbs a {
    color: var(--k-muted);
    text-decoration: none;
}

.k-crumbs a:hover {
    color: var(--k-primary);
}

.k-crumbs span + span::before {
    content: "/";
    margin: 0 7px;
    color: var(--k-line);
}

/* ---------- Page header ---------- */

.k-page-head {
    background: var(--k-surface);
    border-bottom: 1px solid var(--k-line);
    padding: 26px 0;
}

.k-page-head h1 {
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 300;
    margin: 0 0 6px;
}

.k-page-head p {
    color: var(--k-muted);
    margin: 0;
    max-width: none;
}

/* ---------- Filter sidebar ---------- */

.k-filters {
    border: 1px solid var(--k-line);
    padding: 16px;
    background: var(--k-white);
}

/* Not a heading element: the sidebar repeats on every listing page and would
   otherwise crowd the real document outline. */
.k-filters__label {
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin: 0 0 10px;
    color: var(--k-muted);
}

.k-filters__group + .k-filters__group {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid var(--k-line);
}

.k-filters select,
.k-filters input {
    width: 100%;
    border: 1px solid var(--k-line);
    padding: 8px 10px;
    font-size: 0.86rem;
}

.k-filters__list {
    list-style: none;
    margin: 0;
    padding: 0;
    max-height: 260px;
    overflow-y: auto;
}

.k-filters__list a {
    display: block;
    padding: 5px 0;
    font-size: 0.86rem;
    color: var(--k-ink);
    text-decoration: none;
}

.k-filters__list a:hover,
.k-filters__list a.is-active {
    color: var(--k-accent);
    font-weight: 600;
}

/* ---------- Info / trust row ---------- */

.k-trust {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.k-trust__item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: var(--k-white);
    border: 1px solid var(--k-line);
}

.k-trust__item i {
    font-size: 1.35rem;
    color: var(--k-accent);
}

.k-trust__item strong {
    display: block;
    font-size: 0.9rem;
}

.k-trust__item span {
    font-size: 0.78rem;
    color: var(--k-muted);
}

/* ---------- Branch cards ---------- */

.k-branches {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.k-branch {
    padding: 16px;
    border: 1px solid var(--k-line);
    background: var(--k-white);
}

.k-branch h3 {
    font-size: 0.98rem;
    font-weight: 700;
    color: var(--k-primary);
    margin: 0 0 6px;
}

.k-branch p {
    font-size: 0.84rem;
    color: var(--k-muted);
    margin: 0 0 6px;
}

.k-branch a {
    font-size: 0.84rem;
    color: var(--k-ink);
    text-decoration: none;
    display: block;
}

/* ---------- Footer ---------- */

.k-footer {
    background: var(--k-primary-dark);
    color: var(--k-white);
    padding: 44px 0 0;
    margin-top: auto;
}

/* Footer layout uses Bootstrap row/col in the partial. */

/* Styled like a heading but rendered as a paragraph, so the footer never adds
   h2/h3 noise to the outline of every page. */
.k-footer__heading {
    color: var(--k-white);
    font-size: 0.88rem;
    font-weight: 300;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.k-footer p {
    color: var(--k-white);
    font-size: 0.87rem;
    line-height: 1.65;
    margin: 0 0 0.75rem;
}

.k-footer__about p:last-child {
    margin-bottom: 0;
}

.k-footer__about strong {
    font-weight: 700;
    color: var(--k-white);
}

.k-footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.k-footer li {
    margin-bottom: 8px;
}

.k-footer a {
    color: var(--k-white);
    text-decoration: none;
    font-size: 0.87rem;
}

.k-footer a:hover {
    color: var(--k-white);
    text-decoration: underline;
}

.k-footer__legal {
    margin-top: 34px;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    padding: 16px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 18px;
    justify-content: center;
}

.k-footer__legal a {
    font-size: 0.8rem;
}

.k-footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    padding: 14px 0;
    font-size: 0.8rem;
    color: var(--k-white);
    text-align: center;
}

/* ---------- Sticky mobile contact bar ---------- */

.k-mobile-bar {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1040;
    background: #25d366;
}

.k-mobile-bar a {
    display: block;
    padding: 12px;
    text-align: center;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
}

/* ---------- Responsive ---------- */

@media (max-width: 1399.98px) {
    :root { --k-gutter: 22px; }
    .k-strip { grid-template-columns: repeat(min(var(--cols, 6), 5), minmax(0, 1fr)); }
}

@media (max-width: 1199.98px) {
    .k-strip { grid-template-columns: repeat(min(var(--cols, 6), 4), minmax(0, 1fr)); }
    .k-grid { grid-template-columns: repeat(min(var(--cols, 4), 4), minmax(0, 1fr)); }
}

@media (max-width: 991.98px) {
    :root { --k-gutter: 16px; }
    .k-header__inner { flex-wrap: wrap; }
    .k-search { order: 3; max-width: none; flex-basis: 100%; }
    .k-grid { grid-template-columns: repeat(min(var(--cols, 4), 3), minmax(0, 1fr)); }
    .k-trust { grid-template-columns: repeat(2, 1fr); }

    /* Too narrow for a left-to-right fade to leave the photo any room, so the
       wash runs top to bottom instead: dense behind the copy, clearing at the
       foot so the room is still visible. */
    .k-hero__banner {
        min-height: 470px;
        align-items: flex-start;
    }
    .k-hero__banner::after {
        background: linear-gradient(
            180deg,
            rgba(10, 79, 68, 0.92) 0%,
            rgba(15, 107, 92, 0.78) 42%,
            rgba(15, 107, 92, 0.34) 72%,
            rgba(15, 107, 92, 0.12) 100%
        );
    }
    .k-hero__copy {
        max-width: none;
        padding: 34px 22px 40px;
    }
    .k-hero__lead { max-width: none; }

    .k-nav__toggle { display: inline-flex; }
    .k-nav__inner {
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding-bottom: 10px;
    }
    .k-nav__inner.is-open { display: flex; }
    .k-nav__link {
        height: auto;
        padding: 11px 4px;
        border-bottom: 1px solid var(--k-line);
    }
    .k-nav__panel {
        position: static;
        display: block;
        border: 0;
        box-shadow: none;
        padding: 4px 0 10px 16px;
        min-width: 0;
    }
}

@media (max-width: 767.98px) {
    .k-strip { grid-template-columns: repeat(min(var(--cols, 6), 3), minmax(0, 1fr)); }
    .k-grid { grid-template-columns: repeat(min(var(--cols, 4), 2), minmax(0, 1fr)); }
    .k-branches { grid-template-columns: 1fr; }
    .k-mobile-bar { display: block; }
    body { padding-bottom: 46px; }
    .k-utility__inner { justify-content: center; }
}

@media (max-width: 575.98px) {
    .k-hero__banner { min-height: 430px; }
}

@media (max-width: 479.98px) {
    .k-strip { grid-template-columns: repeat(min(var(--cols, 6), 2), minmax(0, 1fr)); }
    .k-trust { grid-template-columns: 1fr; }
}
