:root {
    --bg: #f7efe6;
    --surface: #fffaf4;
    --surface-strong: #fff4e7;
    --panel: #2b1712;
    --panel-soft: #3e241c;
    --text: #221611;
    --muted: #6f5a51;
    --accent: #b85b2d;
    --accent-dark: #8a401d;
    --sand: #e7bf90;
    --border: rgba(34, 22, 17, 0.09);
    --shadow: 0 24px 60px rgba(43, 23, 18, 0.12);
    --radius-lg: 32px;
    --radius-md: 22px;
    --radius-sm: 16px;
    --container-max: 1180px;
}

/* =========================================================
   HERO SLIDER
   ========================================================= */
.bd-slider {
    position: relative;
    overflow: hidden;
    height: 100svh;
    min-height: 480px;
    max-height: 900px;
    background: linear-gradient(120deg, #1d110d 0%, #2d1a14 100%);
}

.bd-slider__track {
    display: flex;
    height: 100%;
    transition: transform 0.7s cubic-bezier(0.65, 0, 0.25, 1);
    will-change: transform;
}

.bd-slide {
    position: relative;
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.bd-slide__content {
    position: relative;
    z-index: 1;
    padding: 3rem 0;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.55s ease 0.25s, transform 0.55s ease 0.25s;
}

.bd-slide.is-active .bd-slide__content {
    opacity: 1;
    transform: translateY(0);
}

/* Slider heading & copy always white regardless of global palette */
.bd-slide__content .display-title,
.bd-slide__content h1,
.bd-slide__content h2 {
    color: #ffffff !important;
    text-shadow: 0 2px 16px rgba(0,0,0,0.5);
    max-width: 14ch;
}

.bd-slide__content .hero-copy {
    color: rgba(255,255,255,0.85) !important;
    max-width: 46ch;
    text-shadow: 0 1px 8px rgba(0,0,0,0.4);
}

.bd-slide__image-wrap {
    height: min(74vh, 640px);
    border-radius: var(--radius-md);
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

.bd-slide__image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.text-white-70 {
    color: rgba(255,255,255,0.78);
}

/* Arrows */
.bd-slider__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #fff;
    font-size: 2.2rem;
    line-height: 1;
    width: 3.2rem;
    height: 3.2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    backdrop-filter: blur(6px);
    transition: background 0.2s, border-color 0.2s;
}

.bd-slider__arrow:hover,
.bd-slider__arrow:focus {
    background: rgba(184, 91, 45, 0.75);
    border-color: var(--accent);
    outline: none;
}

.bd-slider__arrow--prev { left: 1.25rem; }
.bd-slider__arrow--next { right: 1.25rem; }

@media (min-width: 768px) {
    .bd-slider__arrow--prev { left: 2rem; }
    .bd-slider__arrow--next { right: 2rem; }
}

@media (max-width: 991.98px) {
    .bd-slider {
        height: auto;
        min-height: 0;
        max-height: none;
    }

    .bd-slide {
        min-height: 760px;
        align-items: flex-start;
    }

    .bd-slide__content {
        padding-top: 6rem;
        padding-bottom: 5.5rem;
    }

    .bd-slide__image-wrap {
        height: 320px;
    }

    .bd-slide__content .display-title,
    .bd-slide__content h1,
    .bd-slide__content h2 {
        max-width: none;
    }

    .bd-slide__content .hero-copy {
        max-width: none;
    }
}

/* Dots */
.bd-slider__dots {
    position: absolute;
    bottom: 1.75rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 0.6rem;
}

.bd-dot {
    width: 0.6rem;
    height: 0.6rem;
    border-radius: 50%;
    border: 0;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    padding: 0;
    transition: background 0.25s, transform 0.25s;
}

.bd-dot.active {
    background: #fff;
    transform: scale(1.4);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Manrope', sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(231, 191, 144, 0.4), transparent 35%),
        linear-gradient(180deg, #fff8f1 0%, #f9f0e6 100%);
    min-height: 100vh;
}

h1,
h2,
h3,
h4,
.brand-title,
.display-title,
.section-title,
.footer-title {
    font-family: 'DM Serif Display', serif;
    letter-spacing: -0.02em;
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    color: var(--accent-dark);
}

img {
    display: block;
}

.container {
    max-width: var(--container-max);
}

.skip-link {
    position: absolute;
    left: 1rem;
    top: 1rem;
    z-index: 2000;
    background: var(--panel);
    color: #fff;
    padding: 0.75rem 1rem;
    border-radius: 999px;
}

.site-header {
    background: rgba(255, 248, 241, 0.88);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(34, 22, 17, 0.06);
    transition: box-shadow 0.25s ease, background-color 0.25s ease;
}

.site-header.is-scrolled {
    box-shadow: 0 18px 40px rgba(34, 22, 17, 0.08);
    background: rgba(255, 248, 241, 0.96);
}

.navbar-brand {
    color: var(--text);
}

.brand-mark {
    width: 3rem;
    height: 3rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent), #6d3218);
    box-shadow: 0 10px 25px rgba(184, 91, 45, 0.35);
}

.brand-title {
    font-size: 1.4rem;
    line-height: 1;
}

.brand-subtitle {
    font-size: 0.76rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--muted);
    margin-top: 0.3rem;
}

.nav-link {
    color: var(--muted);
    font-weight: 600;
    position: relative;
    padding-inline: 0;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text);
}

.nav-link.active:not(.dropdown-toggle)::after,
.nav-link:hover:not(.dropdown-toggle)::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -0.2rem;
    height: 2px;
    background: var(--accent);
}

.about-menu .dropdown-toggle::after {
    margin-left: 0.4rem;
    vertical-align: 0.15em;
}

@media (min-width: 992px) {
    .about-menu:hover .about-menu-dropdown,
    .about-menu:focus-within .about-menu-dropdown {
        display: block;
        margin-top: 0;
    }
}

.about-menu-dropdown {
    min-width: 540px;
    border: 1px solid var(--border);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(34, 22, 17, 0.14);
    background: #fff8f1;
}

.about-menu-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.about-menu-grid .dropdown-item {
    padding: 0.9rem 1rem;
    font-weight: 600;
    color: var(--muted);
    border-bottom: 1px solid rgba(34, 22, 17, 0.06);
}

.about-menu-grid .dropdown-item:nth-child(odd) {
    border-right: 1px solid rgba(34, 22, 17, 0.06);
}

.about-menu-grid .dropdown-item:hover,
.about-menu-grid .dropdown-item:focus {
    background: rgba(231, 191, 144, 0.18);
    color: var(--text);
}

.btn-accent {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    border: 0;
    color: #fff;
    box-shadow: 0 16px 30px rgba(184, 91, 45, 0.26);
}

.btn-accent.is-processing,
.btn-accent:disabled {
    opacity: 0.85;
    color: #fff;
}

.contact-submit-label {
    display: inline-block;
}

.hero-section,
.page-hero {
    position: relative;
    padding: 6rem 0 5rem;
}

/* Inner page hero: real drops background image */
.page-hero {
    background-image: url('../images/new-drops-crop-nov-16-use-on-ste-low-res.jpg');
    background-size: cover;
    background-position: center top;
    background-color: #180e0a;
}

/* Inner page hero: dark overlay so text reads on photo */
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(160deg, rgba(12, 6, 2, 0.78) 0%, rgba(20, 10, 4, 0.55) 100%);
    pointer-events: none;
}

/* Ensure page-hero text containers sit above the overlay */
.page-hero .container {
    position: relative;
    z-index: 1;
}

/* Homepage hero: subtle warm gradient (no photo bg here) */
.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 100% 0%, rgba(184, 91, 45, 0.16), transparent 32%),
        radial-gradient(circle at 0% 100%, rgba(231, 191, 144, 0.28), transparent 36%);
    pointer-events: none;
}

/* Page-hero text must be pure white, not tinted */
.page-hero .eyebrow {
    color: var(--sand) !important;
}

.page-hero .display-title,
.page-hero h1,
.page-hero h2 {
    color: #ffffff !important;
    text-shadow: 0 2px 12px rgba(0,0,0,0.45);
    font-size: clamp(2rem, 3.4vw, 3.2rem);
    line-height: 1.08;
    max-width: none !important;
}

.page-hero .hero-copy {
    color: rgba(255, 255, 255, 0.88) !important;
}

.page-hero--compact {
    padding-bottom: 2rem;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.16em;
}

.eyebrow::before {
    content: '';
    width: 2.25rem;
    height: 1px;
    background: currentColor;
}

.display-title {
    font-size: clamp(2.9rem, 5vw, 5rem);
    line-height: 0.98;
    max-width: none;
}

.page-hero .display-title,
.page-hero h1,
.page-hero h2 {
    max-width: none !important;
}

.section-title {
    font-size: clamp(2rem, 3vw, 3.2rem);
    line-height: 1.04;
}

.hero-copy,
.section-copy,
.footer-copy,
.product-card__copy,
.story-feature p,
.value-card p,
.info-card p,
.process-card p,
.quote-panel__source,
.contact-item p,
.footer-address,
.footer-links,
.metric-card span {
    color: var(--muted);
    font-size: 1.02rem;
    line-height: 1.8;
}

.hero-visual {
    position: relative;
    max-width: 540px;
    margin-inline: auto;
}

.hero-visual img,
.about-visual {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    object-fit: contain;
    width: 100%;
    max-height: 520px;
    background: #fff;
}

.story-panel-img {
    border-radius: var(--radius-md);
    width: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
    background: #fff;
}

.zoomable-image {
    cursor: zoom-in;
}

.navbar-logo-img {
    height: 44px;
    width: auto;
    border-radius: 6px;
}

/* =========================================================
   AWARD CARDS
   ========================================================= */
.award-card {
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: rgba(255, 250, 244, 0.88);
    box-shadow: var(--shadow);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.award-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 32px 70px rgba(43, 23, 18, 0.16);
}

.award-card__img-wrap {
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    aspect-ratio: 4 / 3;
}

.award-card__img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
    transition: transform 0.4s ease;
}

.award-card:hover .award-card__img {
    transform: scale(1.04);
}

.award-card__body {
    padding: 1.2rem 1.4rem;
    margin-top: auto;
    border-top: 1px solid var(--border);
}

.floating-note {
    position: absolute;
    background: rgba(255, 250, 244, 0.96);
    border-radius: 20px;
    padding: 1rem 1.2rem;
    box-shadow: 0 20px 40px rgba(34, 22, 17, 0.12);
    max-width: 220px;
}

.floating-note span {
    display: block;
    color: var(--muted);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    margin-bottom: 0.3rem;
}

.floating-note strong {
    font-size: 1rem;
    line-height: 1.4;
}

.floating-note-top {
    top: 1rem;
    right: -1rem;
}

.floating-note-bottom {
    bottom: 2rem;
    left: -1.5rem;
}

.section-space {
    padding: 5.5rem 0;
}

.bg-cream {
    background: rgba(255, 250, 244, 0.72);
}

.bg-dark-panel {
    background: linear-gradient(135deg, #23140f 0%, #3a2219 100%);
}

.text-sand {
    color: var(--sand);
}

.metric-card,
.product-card,
.story-panel,
.story-feature,
.process-card,
.cta-panel,
.value-card,
.info-card,
.form-shell,
.contact-panel,
.quote-panel {
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: rgba(255, 250, 244, 0.88);
    box-shadow: var(--shadow);
}

.metric-card {
    padding: 1.25rem;
    min-height: 100%;
}

.metric-card strong,
.process-number,
.product-card__price {
    display: block;
    font-size: 1.4rem;
    color: var(--text);
    margin-bottom: 0.35rem;
}

.product-card {
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover,
.reveal-card.is-visible {
    transform: translateY(-4px);
}

.product-card__media {
    background: linear-gradient(180deg, rgba(231, 191, 144, 0.26), rgba(255, 250, 244, 0.9));
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    min-height: 220px;
}

.product-card__media img {
    max-height: 200px;
    max-width: 100%;
    width: auto;
    object-fit: contain;
}

.image-lightbox {
    position: fixed;
    inset: 0;
    z-index: 3000;
    display: none;
}

.image-lightbox.is-open {
    display: block;
}

.image-lightbox__backdrop {
    position: absolute;
    inset: 0;
    border: 0;
    background: rgba(10, 6, 4, 0.86);
}

.image-lightbox__dialog {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 5rem;
}

.image-lightbox__figure {
    max-width: min(1100px, 100%);
    max-height: 100%;
    text-align: center;
}

.image-lightbox__img {
    max-width: 100%;
    max-height: calc(100vh - 8rem);
    width: auto;
    height: auto;
    object-fit: contain;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.35);
}

.image-lightbox__caption {
    color: rgba(255, 255, 255, 0.9);
    margin-top: 1rem;
    font-size: 0.96rem;
}

.image-lightbox__close,
.image-lightbox__nav {
    position: absolute;
    border: 0;
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
    width: 3rem;
    height: 3rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    backdrop-filter: blur(8px);
}

.image-lightbox__close {
    top: 1.25rem;
    right: 1.25rem;
}

.image-lightbox__nav--prev {
    left: 1.25rem;
}

.image-lightbox__nav--next {
    right: 1.25rem;
}

.image-lightbox__close:hover,
.image-lightbox__nav:hover {
    background: rgba(255, 255, 255, 0.2);
}

.product-card__body {
    padding: 1.75rem;
}

.product-card__eyebrow {
    font-size: 0.78rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 700;
}

.product-card__title,
.story-feature h3,
.value-card h3,
.info-card h2,
.info-card h3,
.process-card h3,
.contact-item h3,
.footer-heading {
    font-size: 1.45rem;
    margin-bottom: 0.75rem;
}

.story-panel,
.cta-panel,
.form-shell,
.contact-panel,
.quote-panel {
    padding: 2rem;
}

.story-feature,
.value-card,
.info-card,
.process-card {
    padding: 1.6rem;
}

.process-card {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: none;
}

.process-card h3,
.process-card p,
.process-number {
    color: #fff;
}

.process-number {
    color: var(--sand);
    font-size: 3rem;
    line-height: 1;
}

.link-arrow {
    color: var(--accent-dark);
    font-weight: 700;
}

.link-arrow::after {
    content: ' ->';
}

.quote-panel__copy {
    font-family: 'DM Serif Display', serif;
    font-size: 1.9rem;
    line-height: 1.3;
    margin-bottom: 1rem;
}

.info-card .award-badge {
    max-width: 120px;
}

.form-label {
    font-weight: 700;
}

.form-control {
    background: rgba(255, 255, 255, 0.72);
    border-color: rgba(34, 22, 17, 0.12);
    padding: 0.85rem 1rem;
    border-radius: 16px;
}

.form-control:focus {
    border-color: rgba(184, 91, 45, 0.5);
    box-shadow: 0 0 0 0.25rem rgba(184, 91, 45, 0.16);
}

#contactForm.was-validated .form-control:optional:placeholder-shown {
    border-color: rgba(34, 22, 17, 0.12);
    background-image: none;
    padding-right: 1rem;
}

.contact-item + .contact-item {
    margin-top: 1.5rem;
}

.site-footer {
    background: #1d110d;
    color: rgba(255, 255, 255, 0.92);
}

.footer-title {
    font-size: 2rem;
}

/* Footer brand logo block */
.footer-brand-link {
    text-decoration: none;
    color: inherit;
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.65rem;
}

.footer-logo-img {
    width: min(100%, 220px);
    height: auto;
    object-fit: contain;
    border-radius: 0;
    flex-shrink: 0;
}

.footer-brand-name {
    font-family: 'DM Serif Display', serif;
    font-size: 1.25rem;
    color: #fff;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.footer-brand-tag {
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.55);
    margin-top: 2px;
}

.footer-copy,
.footer-address,
.footer-links li,
.footer-bottom,
.footer-socials a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-links li + li,
.footer-socials a + a {
    margin-top: 0.7rem;
}

.footer-links a:hover,
.footer-socials a:hover,
.footer-address a:hover {
    color: #fff;
}

.sitemap-links li,
.sitemap-links a {
    color: var(--muted);
}

.sitemap-links li + li {
    margin-top: 0.7rem;
}

.sitemap-links a:hover {
    color: var(--text);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.95rem;
}

.footer-policy-links {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.footer-policy-links a {
    color: rgba(255, 255, 255, 0.75);
}

.footer-policy-links a:hover {
    color: #fff;
}

.reveal-card {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    transition-delay: calc(var(--delay, 0) * 100ms);
}

.reveal-card.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 991.98px) {
    .navbar-collapse {
        background: rgba(255, 248, 241, 0.98);
        margin-top: 1rem;
        border-radius: 22px;
        padding: 1.2rem;
        border: 1px solid rgba(34, 22, 17, 0.08);
    }

    .nav-link.active:not(.dropdown-toggle)::after,
    .nav-link:hover:not(.dropdown-toggle)::after {
        display: none;
    }

    .about-menu-dropdown {
        min-width: 100%;
        box-shadow: none;
        border-radius: 14px;
        margin-top: 0.4rem;
    }

    .about-menu-grid {
        grid-template-columns: 1fr;
    }

    .image-lightbox__dialog {
        padding: 1rem 3.5rem;
    }

    .image-lightbox__img {
        max-height: calc(100vh - 10rem);
    }

    .about-menu-grid .dropdown-item:nth-child(odd) {
        border-right: 0;
    }

    .display-title {
        max-width: none;
    }

    .floating-note-top {
        right: 0;
    }

    .floating-note-bottom {
        left: 0;
    }
}

@media (max-width: 767.98px) {
    .hero-section,
    .page-hero,
    .section-space {
        padding: 4rem 0;
    }

    .floating-note {
        position: static;
        margin-top: 1rem;
        max-width: none;
    }

    .hero-visual {
        display: grid;
        gap: 1rem;
    }

    .story-panel,
    .cta-panel,
    .form-shell,
    .contact-panel,
    .quote-panel {
        padding: 1.5rem;
    }

    .footer-policy-links {
        gap: 0.35rem;
    }

    .image-lightbox__dialog {
        padding: 1rem;
    }

    .image-lightbox__close {
        top: 0.75rem;
        right: 0.75rem;
    }

    .image-lightbox__nav {
        width: 2.75rem;
        height: 2.75rem;
        font-size: 1.5rem;
        bottom: 1rem;
        top: auto;
    }

    .image-lightbox__nav--prev {
        left: calc(50% - 3.25rem);
    }

    .image-lightbox__nav--next {
        right: calc(50% - 3.25rem);
    }
}