/* ==========================================================================
   CSS Variables & Typography (Modern Luxury Theme)
   ========================================================================== */
:root {
    --color-primary: #2d1f14;
    /* Deep espresso, nearly black */
    --color-accent: #b38b4d;
    /* Refined Gold */
    --color-accent-light: #d4ae6d;
    --color-bg-base: #faf9f6;
    /* Rich paper-cream */
    --color-bg-surface: #ffffff;
    /* pure white */
    --color-text-main: #332d29;
    --color-text-muted: #6e645e;

    --font-heading: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;

    --transition-slow: 0.8s cubic-bezier(0.22, 1, 0.36, 1);
    --transition-fast: 0.4s cubic-bezier(0.22, 1, 0.36, 1);

    --shadow-sm: 0 4px 15px rgba(45, 31, 20, 0.05);
    --shadow-md: 0 10px 30px rgba(45, 31, 20, 0.08);
    --shadow-lg: 0 20px 50px rgba(45, 31, 20, 0.12);
}

/* ==========================================================================
   Reset & Base Styles
   ========================================================================== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.7;
    color: var(--color-text-main);
    background-color: var(--color-bg-base);
    background-image: linear-gradient(to bottom, rgba(253, 252, 247, 1) 0%, rgba(245, 242, 235, 1) 100%);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--color-primary);
    line-height: 1.2;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

h2 {
    font-size: clamp(2rem, 3vw, 2.5rem);
    font-weight: 600;
    letter-spacing: 0.03em;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-style: italic;
}

.tagline {
    font-family: var(--font-body);
    font-size: 1.2rem;
    color: var(--color-accent);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 2rem;
    font-weight: 300;
}

.sub-title {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--color-primary);
}

.small-text {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--color-text-muted);
}

.sub-heading {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--color-accent);
    margin-bottom: 1.5rem;
}

.client-logo {
    width: 85px;
    height: auto;
    mix-blend-mode: multiply;
    transition: transform 0.4s var(--transition-bounce);
    margin: 0 auto;
}

.bottles-img {
    max-width: 100%;
    height: auto;
    mix-blend-mode: multiply;
}

.main-group-img {
    margin: 0 auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
}

/* ==========================================================================
   Utility Classes
   ========================================================================== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 5%;
}

.section-padding {
    padding: 3rem 0;
}

.text-center {
    text-align: center;
}

/* Modern Ornate Divider */
.divider {
    position: relative;
    width: 1px;
    height: 30px;
    background: linear-gradient(to bottom, transparent, var(--color-accent), transparent);
    margin: 0.5rem auto 1rem;
}

.divider.left-align {
    margin-left: 0;
}

.divider.horizontal {
    width: 150px;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--color-accent), transparent);
    margin: 0.5rem auto;
}

.lead-text {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--color-text-main);
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.bold-note {
    font-weight: 700;
    margin-top: 2rem !important;
    font-size: 1rem;
    letter-spacing: 0.05em;
    color: var(--color-primary);
}

.bottom-note {
    font-size: 1.1rem;
    margin-top: 3rem;
    line-height: 1.8;
    color: var(--color-text-muted);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
/* Ornate Divider */
.ornate-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin: 1rem auto 2rem;
    max-width: 400px;
}

.ornate-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(to var(--dir, right), transparent, var(--color-accent) 50%, var(--color-accent) 100%);
}

.ornate-line:last-child {
    --dir: left;
}

.ornate-icon {
    width: 12px;
    height: 12px;
    background: var(--color-accent);
    transform: rotate(45deg);
    position: relative;
}

.ornate-icon::before,
.ornate-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border: 1px solid var(--color-accent);
    top: -4px;
    left: -4px;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    margin-bottom: 0.1rem;
    color: var(--color-primary);
    font-weight: 700;
}

.hero .tagline {
    margin-bottom: 1.5rem;
    font-style: normal;
    text-transform: none;
    letter-spacing: 0.1em;
}

.ornate-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin: 0.5rem auto 1.5rem;
    max-width: 400px;
}

.hero .sub-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.hero .small-text {
    font-size: 0.9rem;
    letter-spacing: 0.15em;
    margin-bottom: 1rem;
}

.hero-footer {
    font-size: 1rem;
    letter-spacing: 0.1em;
    font-weight: 600;
    color: var(--color-accent);
    margin-top: 1rem;
    text-transform: none;
}

/* ==========================================================================
   Premium Spirits Range
   ========================================================================== */
.spirits-range {
    background-color: var(--color-bg-surface);
    position: relative;
    overflow: hidden;
}

.spirits-flex {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.spirit-item {
    padding: 3rem 2rem;
    background: transparent;
    border-radius: 16px;
    transition: all var(--transition-slow);
    position: relative;
    z-index: 1;
}

.spirit-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(250, 248, 245, 1) 100%);
    box-shadow: var(--shadow-sm);
    z-index: -1;
    transition: all var(--transition-slow);
    opacity: 0;
}

.spirit-item:hover::before {
    opacity: 1;
    box-shadow: var(--shadow-lg);
}

.spirit-bottle {
    margin: 0 auto 2rem;
    transition: transform var(--transition-slow);
    height: 350px;
    object-fit: contain;
    filter: drop-shadow(0 15px 20px rgba(61, 43, 31, 0.15));
}

.spirit-item:hover .spirit-bottle {
    transform: translateY(-15px) scale(1.05);
}

.spirit-desc h3 {
    color: var(--color-primary);
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-style: normal;
    margin-bottom: 1rem;
}

.spirit-desc p {
    font-size: 1rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* Manufacturing Section Refinement (Full View) */
.manufacturing-content-vertical {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    text-align: center;
    margin-top: 3rem;
}

.manufacturing-content-vertical .text-block {
    max-width: 800px;
}

.full-view-bottles {
    width: 100%;
    margin-top: 2rem;
}

.bottles-img-full {
    width: 100%;
    max-width: 1100px;
    height: auto;
    margin: 0 auto;
    border-radius: 12px;
    transition: transform var(--transition-slow);
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
}

.full-view-bottles:hover .bottles-img-full {
    transform: scale(1.02);
}

/* Premium Footer */
.site-footer {
    background: #1a1410;
    color: #e6ccab;
    padding: 5rem 0 2rem;
    margin-top: 4rem;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 4rem;
    border-bottom: 1px solid rgba(179, 139, 77, 0.2);
    padding-bottom: 4rem;
}

.footer-brand .footer-logo {
    width: 60px;
    filter: brightness(0) invert(1) opacity(0.8);
    margin-bottom: 1.5rem;
}

.footer-brand h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.footer-brand p {
    font-size: 1rem;
    color: rgba(230, 204, 171, 0.7);
}

.footer-contact {
    display: grid;
    gap: 2rem;
}

.contact-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--color-accent);
    margin-bottom: 0.5rem;
}

.contact-item p {
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    font-size: 0.9rem;
    color: rgba(230, 204, 171, 0.5);
}

@media (max-width: 992px) {
    .manufacturing-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
}

/* ==========================================================================
   Heritage & Awards Section
   ========================================================================== */
/* Heritage Section Refinement (Brochure Corrected) */
.heritage {
    background-color: var(--color-bg-base);
    position: relative;
    padding-top: 0;
    overflow: hidden;
}

.heritage-header-wrapper {
    position: relative;
    width: 100%;
    margin-bottom: 3rem;
}

.heritage-decor-top {
    width: 100%;
}

.decor-img-top {
    width: 100%;
    height: auto;
    display: block;
    mix-blend-mode: multiply;
}

.heritage-overlay-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    z-index: 10;
    pointer-events: none;
}

.heritage-intro-overlay {
    max-width: 600px;
    margin-left: auto;
    text-align: right;
    pointer-events: auto;
}

.section-title-premium {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--color-primary);
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.heritage-lead {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--color-text-main);
    margin-bottom: 2rem;
}

.quality-badge {
    display: inline-block;
}

.badge-text {
    background: #c5a67c;
    /* Muted gold/beige from brochure */
    color: #fff;
    padding: 0.8rem 2.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    letter-spacing: 0.15em;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(197, 166, 124, 0.3);
}

.awards-section-flex {
    display: flex;
    align-items: flex-start;
    gap: 4rem;
    margin-top: 4rem;
    text-align: left;
}

.awards-content-left {
    flex: 1.5;
}

.heritage-bottle-right {
    flex: 1.2;
    display: flex;
    justify-content: center;
    margin-top: -3.5rem;
    /* Shift upwards to align with title */
}

.royal-class-bottle {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.2));
}

.awards-grid-title {
    font-size: 1.6rem;
    color: #3d2b1f;
    /* Deep bronze/brown from brochure */
    margin-bottom: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 800;
    font-style: normal !important;
}

.awards-grid-wrapper {
    margin-bottom: 3.5rem;
}

.awards-ribbon-group {
    display: flex;
    gap: 1.5rem;
    /* Tighter gap */
    margin-bottom: 1.5rem;
}

.award-card img {
    height: 150px;
    /* Slightly larger */
    width: auto;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.12));
}

.awards-medal-group {
    display: flex;
    gap: 1.2rem;
    /* Tighter gap */
    flex-wrap: wrap;
    margin-top: 0.5rem;
}

.award-medal-item img {
    height: 95px;
    /* Scaled up from 80px */
    width: auto;
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.12));
}

.award-blends-list h4 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--color-primary);
}

.award-blends-list ul {
    list-style: none;
    padding: 0;
}

.award-blends-list li {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.4;
}

.award-blends-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--color-accent);
    font-weight: bold;
}

@media (max-width: 992px) {
    .awards-section-flex {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .awards-ribbon-group,
    .awards-medal-group {
        justify-content: center;
    }

    .award-blends-list li {
        text-align: left;
    }
}




/* ==========================================================================
   Animations
   ========================================================================== */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.delay-1 {
    animation-delay: 0.15s;
}

.delay-2 {
    animation-delay: 0.3s;
}

.delay-3 {
    animation-delay: 0.45s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stagger-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s cubic-bezier(0.22, 1, 0.36, 1), transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.stagger-up.in-view {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 992px) {
    .container-flex {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .heritage-left {
        padding-right: 0;
        text-align: center;
    }

    .divider.left-align {
        margin: 2rem auto;
    }

    .awards-list li {
        text-align: left;
    }

    .badges-row {
        justify-content: center;
    }
}