/* ==========================================================================
   Butchery Sology — Stylesheet
   Prefix: .bs-*
   Palette:
     --bs-green:  #1d3a2a   (dark green / brand)
     --bs-black:  #0e0e0e
     --bs-red:    #d63b2b   (CTA)
     --bs-cream:  #f5ede1
     --bs-white:  #fff
   Fonts:
     'Playfair Display' (serif, italics for headlines)
     'Inter' (sans, body)
   ========================================================================== */

/* ---------- Reset / base ---------- */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

:root {
    --bs-green: #1d3a2a;
    --bs-green-deep: #142a1f;
    --bs-black: #0e0e0e;
    --bs-red: #d63b2b;
    --bs-red-dark: #b9301f;
    --bs-cream: #f5ede1;
    --bs-cream-dark: #e8dcc7;
    --bs-white: #ffffff;
    --bs-text: #1a1a1a;
    --bs-muted: #6c6c6c;
    --bs-radius: 999px;
    --bs-radius-sm: 14px;
}

body {
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    color: var(--bs-text);
    background: var(--bs-cream);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    color: inherit;
    text-decoration: none;
}

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

h1, h2, h3, h4 {
    font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
    font-weight: 700;
    margin: 0 0 0.4em;
    line-height: 1.15;
    color: inherit;
}

p {
    margin: 0 0 1em;
}

[x-cloak] {
    display: none !important;
}

/* ---------- Preview banner ---------- */
.preview-banner {
    background: var(--bs-green);
    color: var(--bs-cream);
    text-align: center;
    padding: 10px 16px;
    font-size: 14px;
    letter-spacing: 0.04em;
    font-weight: 600;
}

/* ---------- Buttons ---------- */
.bs-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--bs-radius);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: transform 0.15s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    cursor: pointer;
    border: 2px solid transparent;
    line-height: 1;
}

.bs-btn--red {
    background: var(--bs-red);
    color: var(--bs-white);
    border-color: var(--bs-red);
}

.bs-btn--red:hover {
    background: var(--bs-red-dark);
    border-color: var(--bs-red-dark);
    transform: translateY(-1px);
}

.bs-btn--ghost {
    background: transparent;
    color: var(--bs-cream);
    border-color: rgba(245, 237, 225, 0.4);
}

.bs-btn--ghost:hover {
    background: var(--bs-cream);
    color: var(--bs-green);
    border-color: var(--bs-cream);
}

/* ---------- Eyebrows ---------- */
.bs-eyebrow {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 18px;
}

.bs-eyebrow--cream {
    color: var(--bs-cream);
}

.bs-eyebrow--red {
    color: var(--bs-red);
}

/* ---------- Header ---------- */
.bs-header {
    background: var(--bs-green);
    color: var(--bs-cream);
    border-bottom: 1px solid rgba(245, 237, 225, 0.08);
}

.bs-header__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 18px 32px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 24px;
}

.bs-nav ul {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
}

.bs-nav--left ul {
    justify-content: flex-start;
}

.bs-nav a {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: var(--bs-cream);
    opacity: 0.85;
    transition: opacity 0.2s ease, color 0.2s ease;
    padding: 6px 2px;
    position: relative;
}

.bs-nav a:hover,
.bs-nav a.is-active {
    opacity: 1;
    color: var(--bs-white);
}

.bs-nav a.is-active::after {
    content: "";
    display: block;
    width: 24px;
    height: 2px;
    background: var(--bs-red);
    margin-top: 6px;
}

.bs-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--bs-cream);
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    letter-spacing: 0.18em;
    font-size: 18px;
}

.bs-logo__icon {
    font-size: 22px;
    line-height: 1;
}

.bs-logo__text {
    white-space: nowrap;
}

.bs-header__right {
    display: flex;
    justify-content: flex-end;
}

.bs-phone-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--bs-red);
    color: var(--bs-white);
    padding: 10px 22px;
    border-radius: var(--bs-radius);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.04em;
    transition: background 0.2s ease, transform 0.15s ease;
}

.bs-phone-pill:hover {
    background: var(--bs-red-dark);
    transform: translateY(-1px);
}

.bs-phone-pill__icon {
    font-size: 16px;
}

/* ---------- Hero ---------- */
.bs-hero {
    background: var(--bs-black);
    color: var(--bs-cream);
    padding: 90px 0 110px;
    position: relative;
    overflow: hidden;
}

.bs-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 80% 30%, rgba(214, 59, 43, 0.10), transparent 55%),
        radial-gradient(circle at 10% 90%, rgba(29, 58, 42, 0.55), transparent 60%);
    pointer-events: none;
}

.bs-hero__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
    position: relative;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 64px;
    align-items: center;
}

.bs-hero__eyebrow {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--bs-red);
    margin-bottom: 22px;
    font-weight: 600;
}

.bs-hero__title {
    font-style: italic;
    font-weight: 700;
    font-size: clamp(40px, 5.6vw, 76px);
    line-height: 1.05;
    color: var(--bs-cream);
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}

.bs-hero__lead {
    font-size: 18px;
    color: rgba(245, 237, 225, 0.78);
    max-width: 540px;
    margin-bottom: 36px;
}

.bs-hero__cta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

.bs-hero__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 18px 28px;
}

.bs-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgba(245, 237, 225, 0.85);
    font-size: 14px;
    font-weight: 500;
}

.bs-hero__badge-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(214, 59, 43, 0.15);
    color: var(--bs-red);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    border: 1px solid rgba(214, 59, 43, 0.4);
}

.bs-hero__photo {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.7);
    aspect-ratio: 4 / 5;
    background: #1a1a1a;
}

.bs-hero__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.bs-hero__photo:hover img {
    transform: scale(1.04);
}

.bs-hero__photo-tag {
    position: absolute;
    bottom: 22px;
    left: 22px;
    background: var(--bs-red);
    color: var(--bs-white);
    padding: 8px 16px;
    border-radius: var(--bs-radius);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

/* ---------- Services ---------- */
.bs-services {
    background: var(--bs-green);
    color: var(--bs-cream);
    padding: 110px 0 120px;
    position: relative;
}

.bs-services__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

.bs-services__head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 64px;
}

.bs-services__title {
    font-size: clamp(32px, 4vw, 52px);
    color: var(--bs-cream);
    margin-bottom: 18px;
}

.bs-services__title em {
    font-style: italic;
    color: var(--bs-red);
    font-family: inherit;
}

.bs-services__lead {
    color: rgba(245, 237, 225, 0.78);
    font-size: 17px;
}

.bs-services__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.bs-service-card {
    background: var(--bs-green-deep);
    border-radius: var(--bs-radius-sm);
    overflow: hidden;
    border: 1px solid rgba(245, 237, 225, 0.08);
    transition: transform 0.25s ease, border-color 0.25s ease;
    display: flex;
    flex-direction: column;
}

.bs-service-card:hover {
    transform: translateY(-6px);
    border-color: rgba(214, 59, 43, 0.5);
}

.bs-service-card__photo {
    width: 100%;
    aspect-ratio: 4 / 3;
    background-size: cover;
    background-position: center;
    background-color: #222;
}

.bs-service-card__body {
    padding: 28px 26px 30px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.bs-service-card__bullet {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(214, 59, 43, 0.18);
    color: var(--bs-red);
    font-size: 18px;
    margin-bottom: 14px;
}

.bs-service-card__name {
    font-size: 24px;
    color: var(--bs-cream);
    margin-bottom: 12px;
}

.bs-service-card__desc {
    color: rgba(245, 237, 225, 0.7);
    font-size: 15px;
    flex: 1;
    margin-bottom: 22px;
}

.bs-service-card__link {
    color: var(--bs-red);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.14em;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.2s ease, color 0.2s ease;
}

.bs-service-card__link:hover {
    gap: 14px;
    color: var(--bs-cream);
}

/* ---------- Split section ---------- */
.bs-split {
    background: var(--bs-black);
    color: var(--bs-cream);
    padding: 110px 0;
}

.bs-split__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.bs-split__media {
    position: relative;
    aspect-ratio: 4 / 5;
}

.bs-split__photo {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    border-radius: 18px;
    box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.7);
    background-color: #1a1a1a;
}

.bs-split__photo-secondary {
    position: absolute;
    bottom: -40px;
    left: -40px;
    width: 45%;
    aspect-ratio: 1 / 1;
    background-size: cover;
    background-position: center;
    border-radius: 14px;
    border: 6px solid var(--bs-black);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.8);
    background-color: #1a1a1a;
}

.bs-split__title {
    font-size: clamp(34px, 4.4vw, 56px);
    color: var(--bs-cream);
    margin-bottom: 22px;
    line-height: 1.05;
}

.bs-split__title em {
    font-style: italic;
    color: var(--bs-red);
    font-family: inherit;
}

.bs-split__lead {
    color: rgba(245, 237, 225, 0.78);
    font-size: 17px;
    margin-bottom: 26px;
}

.bs-split__points {
    margin-bottom: 34px;
    display: grid;
    gap: 10px;
}

.bs-split__points li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(245, 237, 225, 0.85);
    font-size: 15px;
}

.bs-split__points span {
    color: var(--bs-red);
    font-size: 12px;
}

/* ---------- Features ---------- */
.bs-features {
    background: var(--bs-white);
    color: var(--bs-text);
    padding: 110px 0 120px;
}

.bs-features__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: center;
}

.bs-features__media {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 18px;
}

.bs-features__photo {
    border-radius: var(--bs-radius-sm);
    overflow: hidden;
    box-shadow: 0 18px 40px -16px rgba(14, 14, 14, 0.25);
    background: #f0e7d6;
}

.bs-features__photo--top {
    grid-column: 1 / -1;
    aspect-ratio: 16 / 10;
}

.bs-features__photo--top img,
.bs-features__photo--bottom img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bs-features__photo--bottom {
    grid-column: 1 / -1;
    aspect-ratio: 16 / 9;
}

.bs-features__title {
    font-size: clamp(32px, 4vw, 52px);
    color: var(--bs-black);
    margin-bottom: 18px;
}

.bs-features__title em {
    font-style: italic;
    color: var(--bs-red);
    font-family: inherit;
}

.bs-features__lead {
    color: var(--bs-muted);
    font-size: 17px;
    margin-bottom: 30px;
    max-width: 540px;
}

.bs-features__list {
    display: grid;
    gap: 22px;
}

.bs-feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.bs-feature__icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--bs-red);
    color: var(--bs-white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    line-height: 1;
    margin-top: 2px;
}

.bs-feature__title {
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    font-weight: 600;
    margin: 0 0 4px;
    color: var(--bs-black);
}

.bs-feature__desc {
    margin: 0;
    color: var(--bs-muted);
    font-size: 15px;
}

/* ---------- Footer ---------- */
.bs-footer {
    background: var(--bs-black);
    color: var(--bs-cream);
    padding: 80px 0 28px;
}

.bs-footer__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 56px;
}

.bs-footer__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    letter-spacing: 0.16em;
    font-size: 18px;
    margin-bottom: 16px;
}

.bs-footer__tagline {
    color: rgba(245, 237, 225, 0.7);
    font-size: 15px;
    max-width: 320px;
}

.bs-footer__title {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--bs-red);
    margin: 0 0 18px;
    font-weight: 700;
}

.bs-footer__list {
    display: grid;
    gap: 10px;
    color: rgba(245, 237, 225, 0.78);
    font-size: 15px;
}

.bs-footer__list li {
    display: flex;
    justify-content: space-between;
    gap: 16px;
}

.bs-footer__list a:hover {
    color: var(--bs-white);
}

.bs-footer__bottom {
    max-width: 1280px;
    margin: 0 auto;
    padding: 24px 32px 0;
    border-top: 1px solid rgba(245, 237, 225, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    color: rgba(245, 237, 225, 0.6);
    font-size: 13px;
}

.bs-footer__bottom a:hover {
    color: var(--bs-cream);
}

/* ---------- Contact / Generic page utilities ---------- */
.contact-page {
    background: var(--bs-cream);
    color: var(--bs-black);
    padding: 80px 0;
}

.contact-page .container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 32px;
}

.contact-page .two-col {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
}

.contact-page h1 {
    font-size: clamp(32px, 4vw, 48px);
    margin-bottom: 24px;
}

.contact-form {
    display: grid;
    gap: 18px;
    background: var(--bs-white);
    padding: 32px;
    border-radius: var(--bs-radius-sm);
    box-shadow: 0 18px 40px -20px rgba(0, 0, 0, 0.2);
}

.contact-form label {
    display: grid;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--bs-black);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    font-family: inherit;
    font-size: 15px;
    padding: 12px 14px;
    border: 1px solid #d8d0bf;
    border-radius: 10px;
    background: var(--bs-cream);
    color: var(--bs-black);
    text-transform: none;
    font-weight: 400;
    letter-spacing: 0;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: 2px solid var(--bs-red);
    outline-offset: 1px;
    border-color: var(--bs-red);
}

.contact-form .hp {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
}

.contact-form button {
    background: var(--bs-red);
    color: var(--bs-white);
    border: none;
    padding: 14px 28px;
    border-radius: var(--bs-radius);
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s ease;
}

.contact-form button:hover {
    background: var(--bs-red-dark);
}

.flash {
    padding: 14px 18px;
    border-radius: 10px;
    margin-bottom: 18px;
    font-size: 14px;
}

.flash-success {
    background: #e7f3ec;
    color: #1d3a2a;
    border: 1px solid #b8d6c2;
}

.flash-error {
    background: #fbe6e3;
    color: #7a1b12;
    border: 1px solid #e9b6af;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 26px;
    border-radius: var(--bs-radius);
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-size: 14px;
}

.btn-primary {
    background: var(--bs-red);
    color: var(--bs-white);
}

.btn-primary:hover {
    background: var(--bs-red-dark);
}

.not-found {
    background: var(--bs-cream);
    padding: 100px 0;
    text-align: center;
}

.not-found .container {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 32px;
}

/* ---------- Responsive (≤ 800px) ---------- */
@media (max-width: 800px) {
    .bs-header__inner {
        grid-template-columns: 1fr auto;
        gap: 14px;
        padding: 14px 18px;
    }

    .bs-nav--left {
        order: 3;
        grid-column: 1 / -1;
    }

    .bs-nav--left ul {
        justify-content: center;
        gap: 18px;
    }

    .bs-logo__text {
        font-size: 14px;
        letter-spacing: 0.12em;
    }

    .bs-phone-pill__num {
        display: none;
    }

    .bs-phone-pill {
        padding: 10px 12px;
    }

    .bs-hero {
        padding: 60px 0 70px;
    }

    .bs-hero__inner {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 18px;
    }

    .bs-hero__photo {
        aspect-ratio: 4 / 3;
        order: -1;
    }

    .bs-hero__cta {
        flex-direction: column;
        align-items: stretch;
    }

    .bs-btn {
        width: 100%;
    }

    .bs-services,
    .bs-split,
    .bs-features {
        padding: 70px 0;
    }

    .bs-services__inner,
    .bs-split__inner,
    .bs-features__inner {
        padding: 0 18px;
    }

    .bs-services__grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .bs-split__inner {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .bs-split__photo-secondary {
        width: 50%;
        bottom: -28px;
        left: -18px;
        border-width: 4px;
    }

    .bs-features__inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .bs-features__media {
        order: -1;
    }

    .bs-footer {
        padding: 56px 0 24px;
    }

    .bs-footer__inner {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 40px;
        padding: 0 18px;
    }

    .bs-footer__bottom {
        flex-direction: column;
        text-align: center;
        padding: 20px 18px 0;
    }

    .contact-page {
        padding: 56px 0;
    }

    .contact-page .container {
        padding: 0 18px;
    }

    .contact-page .two-col {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .contact-form {
        padding: 22px;
    }
}
