/* =============================================
   0. COLOR PALETTE (CSS Variables)
   ============================================= */
:root {
    --crimson-oak: #8C1515;
    --gold-oak: #B8975A;
    --espresso-oak: #2D1608;
    --blush-oak: #FDF0EF;
    --amber-liquid: #CC7D44;
    --stone-roasted: #3D1A12;
    --cream-almond: #FDF0EF;
    --husk-velvet: #E8D3C0;
    
    --bg-primary: var(--blush-oak);      
    --bg-dark: var(--espresso-oak);      
    --text-main: var(--stone-roasted);   
    --text-light: #F2ECE4;               
    --border-soft: var(--husk-velvet);   
}

/* =============================================
   CUSTOM FONT IMPORTS
   ============================================= */

/* 1. Base 900 Sans */
@font-face {
    font-family: 'Base 900 Sans';
    src: url('fonts/Base900SansOT-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: 'Base 900 Sans';
    src: url('fonts/Base900SansOT-Italic.otf') format('opentype');
    font-weight: 400;
    font-style: italic;
}
@font-face {
    font-family: 'Base 900 Sans';
    src: url('fonts/Base900SansOT-Medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
}
@font-face {
    font-family: 'Base 900 Sans';
    src: url('fonts/Base900SansOT-MediumItalic.otf') format('opentype');
    font-weight: 500;
    font-style: italic;
}

/* 2. Optician Sans */
@font-face {
    font-family: 'Optician Sans';
    src: url('fonts/Optician-Sans.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}

/* 3. Mr Bedfort */
@font-face {
    font-family: 'Mr Bedfort';
    src: url('fonts/MrBedfort-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

/* =============================================
   1. BASE & RESET
   ============================================= */
* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Base 900 Sans', sans-serif; background-color: var(--bg-primary); color: var(--text-main); line-height: 1.6; }
a { text-decoration: none; color: inherit; transition: color 0.3s ease, background 0.3s ease; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style-type: none; }

/* =============================================
   2. HEADER STYLES
   ============================================= */
header { 
    background-color: var(--bg-primary); 
    padding: 30px 20px; 
    display: flex; 
    justify-content: center; 
    position: sticky; 
    top: 0; 
    left: 0; 
    width: 100%; 
    z-index: 1000; 
    border-bottom: 1px solid var(--border-soft); 
}
.header-badge {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 40px; 
    pointer-events: none; 
}
.header-badge img {
    height: 35px; 
    width: auto;
    mix-blend-mode: multiply;
    transform: scale(4.5); 
}
.header-inner { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    width: 100%; 
    max-width: 1200px; 
}
.logo-container { 
    font-family: 'Cinzel', serif; 
    display: flex; 
    flex-direction: column; 
    text-align: left; 
    color: var(--text-main);
}
.logo-top { 
    font-size: 13px; 
    letter-spacing: 0.25em; 
    font-weight: 700; 
    color: var(--gold-oak); 
}
.logo-bottom { 
    font-size: 32px; 
    font-weight: 700; 
    margin-top: 2px; 
    letter-spacing: 0.05em; 
}
nav { font-family: 'Base 900 Sans', sans-serif; font-size: 12px; color: rgba(61, 26, 18, 0.7); font-weight: 700;}
nav a { margin: 0 15px; text-transform: uppercase; letter-spacing: 0.05em; }
nav a:hover { color: var(--crimson-oak); }


/* =============================================
   3. ELEGANT BUTTON SYSTEM
   ============================================= */
.btn-pill { 
    display: inline-block; 
    padding: 14px 35px; 
    border-radius: 50px; 
    font-family: 'Base 900 Sans', sans-serif; 
    text-transform: uppercase; 
    font-weight: 700; 
    font-size: 11px; 
    letter-spacing: 0.15em; 
    cursor: pointer; 
    text-align: center; 
    transition: all 0.3s ease;
    border: 1px solid transparent;
}
.btn-crimson { background-color: var(--crimson-oak); color: #FFFFFF; border-color: var(--crimson-oak); }
.btn-crimson:hover { background-color: var(--gold-oak); border-color: var(--gold-oak); color: #FFFFFF; box-shadow: 0 5px 15px rgba(184, 151, 90, 0.3);}
.btn-ghost { background: transparent; color: rgba(61, 26, 18, 0.7); font-family: 'Base 900 Sans', sans-serif; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em; padding: 14px 20px; }
.btn-ghost:hover { color: var(--crimson-oak); }
.btn-taupe { background-color: #A09085; color: #FFFFFF; border-color: #A09085; }
.btn-taupe:hover { background-color: var(--stone-roasted); border-color: var(--stone-roasted); color: #FFFFFF; box-shadow: 0 5px 15px rgba(61, 26, 18, 0.3); }
.btn-full { width: 100%; }

/* =============================================
   4. HOME PAGE: HERO SECTION
   ============================================= */
.new-hero { 
    background-color: var(--bg-primary); color: var(--text-main); 
    min-height: calc(100vh - 100px);
    display: flex; align-items: center; justify-content: center; 
    position: relative; overflow: hidden; padding: 40px 20px; 
}
.hero-inner { display: flex; align-items: center; justify-content: space-between; width: 100%; max-width: 1200px; gap: 60px; z-index: 2; position: relative; }
.hero-deco-circle { position: absolute; right: -10%; top: 50%; transform: translateY(-50%); width: 800px; height: 800px; border: 1px solid rgba(232, 211, 192, 0.5); border-radius: 50%; z-index: 1; }
.hero-text-container { flex: 1; max-width: 500px; }
.hero-overline { font-family: 'Base 900 Sans', sans-serif; font-size: 12px; font-weight: 700; letter-spacing: 0.15em; color: var(--gold-oak); text-transform: uppercase; margin-bottom: 25px; }
.new-hero h1 { font-family: 'Optician Sans', sans-serif; font-size: 56px; line-height: 1.15; margin-bottom: 25px; font-weight: 400; color: var(--text-main); }
.new-hero p.hero-subtext { font-family: 'Base 900 Sans', sans-serif; font-weight: 300; font-size: 14px; color: rgba(61, 26, 18, 0.7); line-height: 1.8; margin-bottom: 40px; max-width: 400px; }
.hero-buttons { display: flex; align-items: center; gap: 20px; }
.hero-media-container { flex: 1; display: flex; justify-content: center; position: relative; z-index: 2; }
.hero-media-wrapper { position: relative; border-radius: 20px; overflow: hidden; width: 100%; max-width: 480px; box-shadow: 0 20px 50px rgba(61, 26, 18, 0.15); }
.hero-media-img { width: 100%; height: auto; display: block; }

/* 2. THE HERO SECTION FIX FOR ORDER ON MOBILE */
.newhero { 
 /* This is the container that holds both the text column and the image column
 */
display: flex;
flex-direction: column-reverse; /* Flips the order! Image goes to the top, text/buttons to the bottom */
 gap: 30px; /* Adds space between the image and the text below it */
 }

.newhero {
    width: 100%;
    display: flex;
    justify-content: center;
    }

    .her-text-container {
    width: 100%;
       text-align: center; /* Centers the text and buttons perfectly under the image */
    display: flex;
    flex-direction: column;
    align-items: center;
    }
} /* <-- Don't forget this closing bracket for the @media query! */

/* =============================================
   5. AWARD BANNER
   ============================================= */
.award-banner { background-color: var(--bg-dark); color: var(--text-light); padding: 30px; text-align: center; border-top: 1px solid rgba(242, 236, 228, 0.1); font-family: 'Base 900 Sans', sans-serif; letter-spacing: 0.05em; text-transform: uppercase; font-size: 14px;}
.award-content { display: flex; align-items: center; justify-content: center; font-weight: 400; color: var(--gold-oak); }
.award-icon { font-size: 20px; margin-right: 15px; }

/* =============================================
   6. HOME PAGE: COCKTAIL COLLECTION
   ============================================= */
.interactive-recipes { padding: 100px 50px; background-color: var(--bg-primary); color: var(--text-main); }
.interactive-recipes h4 { font-family: 'Base 900 Sans', sans-serif; font-size: 12px; color: var(--gold-oak); letter-spacing: 0.15em; font-weight: 700; margin-bottom: 10px; text-transform: uppercase;}
.interactive-recipes h2 { font-family: 'Optician Sans', sans-serif; font-size: 32px; color: var(--text-main); margin-bottom: 30px; text-transform: uppercase;}
.interactive-recipes .section-intro p { font-family: 'Base 900 Sans', sans-serif; font-weight: 300; font-size: 16px; color: var(--text-main); margin-bottom: 20px; line-height: 1.8; max-width: 600px; margin: 0 auto 50px auto;}
.section-intro { text-align: center; }

.recipe-filters { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; margin-bottom: 80px; }
.filter-btn { font-family: 'Base 900 Sans', sans-serif; font-size: 12px; font-weight: 400; letter-spacing: 0.05em; text-transform: capitalize; color: var(--text-main); padding: 10px 25px; background-color: #FFFFFF; border: 1px solid var(--border-soft); border-radius: 50px; cursor: pointer; transition: all 0.3s ease; }
.filter-btn:hover { background-color: #FFFFFF; color: var(--gold-oak); border-color: var(--gold-oak); }
.filter-btn.active { background-color: var(--crimson-oak); color: #FFFFFF; border-color: var(--crimson-oak); }

.interactive-recipes .recipes-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 40px; max-width: 1300px; margin: 0 auto; align-items: start; }
.featured-grid-card { grid-column: 1 / -1; display: flex; flex-direction: row; background-color: transparent; border-radius: 12px; }

/* Cocktail Feature Card */
.featured-image-wrap { flex: 1; background-color: var(--espresso-oak); display: flex; align-items: center; justify-content: center; padding: 60px; }
.featured-img { width: 100%; max-width: 350px; height: auto; object-fit: contain; }
.featured-body { flex: 1; background-color: var(--crimson-oak); color: #FFFFFF; padding: 60px 50px; position: relative; display: flex; flex-direction: column; justify-content: center; overflow: hidden; }
.tag-classic-featured { display: inline-block; background-color: rgba(255, 255, 255, 0.15); color: #FFFFFF; padding: 6px 14px; border-radius: 20px; font-family: 'Base 900 Sans', sans-serif; font-size: 10px; font-weight: 700; letter-spacing: 0.1em; margin-bottom: 25px; align-self: flex-start; }
.featured-title { font-family: 'Optician Sans', sans-serif; font-size: 38px; font-style: italic; font-weight: 400; margin-bottom: 15px; }
.featured-preview { font-family: 'Base 900 Sans', sans-serif; font-size: 14px; font-weight: 300; opacity: 0.9; margin-bottom: 40px; }
.featured-body h4 { 
    font-family: 'Base 900 Sans', sans-serif; 
    font-size: 12px; 
    font-weight: 700; 
    letter-spacing: 0.1em; 
    text-transform: uppercase; 
    margin-bottom: 10px; 
    color: #E4D4C1 !important; 
}
.featured-ingredients .ingredient-list { margin-bottom: 30px; color: #FFFFFF; font-family: 'Base 900 Sans', sans-serif; font-size: 14px; font-weight: 300; list-style-type: none;}
.featured-ingredients .ingredient-list li { margin-bottom: 10px; padding-left: 15px; position: relative; }
.featured-ingredients .ingredient-list li:before { content: "-"; position: absolute; left: 0; color: #FFFFFF; opacity: 0.7; }
.featured-method p { color: #FFFFFF; font-family: 'Base 900 Sans', sans-serif; font-size: 14px; font-weight: 300; opacity: 0.9; line-height: 1.8;}
.watermark { 
    position: absolute; 
    bottom: 10px; 
    left: 50px; 
    font-family: 'Optician Sans', sans-serif; 
    font-size: 50px; 
    color: var(--gold-oak); 
    opacity: 0.35; 
    pointer-events: none; 
}

.category-tag { position: absolute; top: 15px; right: 15px; font-family: 'Cinzel', serif; font-size: 10px; font-weight: 700; color: #FFFFFF; padding: 6px 12px; border-radius: 4px; letter-spacing: 0.1em; }
.tag-classic { background-color: rgba(61, 26, 18, 0.8); } .tag-bitter  { background-color: rgba(140, 21, 21, 0.8); } .tag-tropical { background-color: rgba(204, 125, 68, 0.9); } .tag-strong { background-color: rgba(184, 151, 90, 0.8); } .tag-sour { background-color: rgba(144, 169, 85, 0.8); }

.cocktail-card { background-color: #FFFFFF; display: flex; flex-direction: column; border-radius: 8px; overflow: hidden; transition: transform 0.3s ease, box-shadow 0.3s ease; border: none; box-shadow: 0 5px 15px rgba(61, 26, 18, 0.05); }
.cocktail-card:hover { transform: translateY(-3px); box-shadow: 0 10px 25px rgba(61, 26, 18, 0.08); }
.interactive-recipes .card-image-wrap { position: relative; width: 100%; height: 280px; overflow: hidden; }
.interactive-recipes .card-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.cocktail-card:hover .card-img { transform: scale(1.03); }
.cocktail-card-body { padding: 30px; display: flex; flex-direction: column; flex-grow: 1; }
.cocktail-card-header { display: flex; justify-content: space-between; align-items: center; cursor: pointer; padding-bottom: 20px; border-bottom: 2px solid var(--crimson-oak); }
.cocktail-card h3 { font-family: 'Optician Sans', sans-serif; font-size: 22px; color: var(--text-main); margin-bottom: 0; font-weight: 400; text-transform: capitalize; }
.toggle-icon { font-size: 12px; color: var(--crimson-oak); transition: transform 0.3s ease; }
.expandable-content { overflow: hidden; transition: max-height 0.4s ease, margin 0.4s ease, padding 0.4s ease; }
.expandable-content.is-collapsed { max-height: 50px; padding-top: 20px; }
.expandable-content.is-expanded { max-height: 1000px; padding-top: 25px; padding-bottom: 10px;}
.recipe-preview { font-family: 'Base 900 Sans', sans-serif; font-size: 14px; font-weight: 300; color: rgba(61, 26, 18, 0.8); display: block; margin-bottom: 0; }
.interactive-recipes h4 { font-family: 'Base 900 Sans', sans-serif; font-size: 12px; font-weight: 700; color: var(--text-main); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 10px;}
.ingredients-wrap { margin-bottom: 30px; }
.interactive-recipes .ingredient-list { font-family: 'Base 900 Sans', sans-serif; font-size: 14px; font-weight: 300; list-style-type: none; margin-top: auto; padding-top: 0; border-top: none;}
.interactive-recipes .ingredient-list li { margin-bottom: 6px; padding-left: 10px; position: relative; }
.interactive-recipes .ingredient-list li:before { content: "-"; position: absolute; left: 0; color: var(--gold-oak); opacity: 0.5; }
.recipe-method p { font-family: 'Base 900 Sans', sans-serif; font-size: 14px; font-weight: 300; color: rgba(61, 26, 18, 0.8); line-height: 1.8;}


/* =============================================
   7. OLD PLEDGE SECTION (PRESERVED)
   ============================================= */
.pledge-section { 
    background-color: var(--espresso-oak); 
    color: var(--text-light); 
    padding: 100px 50px; 
}
.pledge-container { 
    display: flex; 
    gap: 80px; 
    align-items: center; 
    max-width: 1200px; 
    margin: 0 auto; 
}
.pledge-text-panel { flex: 1; }
.pledge-overline { 
    font-family: 'Base 900 Sans', sans-serif; 
    font-size: 13px; 
    color: #E4D4C1 !important; 
    letter-spacing: 0.15em; 
    font-weight: 700; 
    margin-bottom: 10px; 
    text-transform: uppercase; 
}
.pledge-heading { 
    font-family: 'Optician Sans', sans-serif; 
    font-size: 48px; 
    margin-bottom: 30px; 
    line-height: 1.2; 
    font-weight: 400; 
}
.text-white { color: #FFFFFF !important; }
.pledge-italic { font-style: italic; color: var(--gold-oak); }
.pledge-text-panel p { 
    font-family: 'Base 900 Sans', sans-serif; 
    font-weight: 300; 
    font-size: 15px; 
    color: rgba(255, 255, 255, 0.85); 
    margin-bottom: 20px; 
    line-height: 1.8; 
}
.pledge-signature { margin-top: 40px; padding-top: 20px; border-top: 1px solid rgba(255, 255, 255, 0.1); max-width: 300px; }
font-family: 'Mr Bedfort', cursive; { font-family: 'Optician Sans', sans-serif; font-style: italic; color: var(--gold-oak) !important; font-size: 20px !important; margin-bottom: 5px !important; }
.sig-title { font-family: 'Base 900 Sans', sans-serif; font-size: 10px !important; font-weight: 700 !important; letter-spacing: 0.15em; color: rgba(255, 255, 255, 0.5) !important; }
.pledge-photo-panel { flex: 1; position: relative; text-align: right; }
.pledge-photo-card { position: relative; width: 100%; max-width: 450px; margin-left: auto; border-radius: 20px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.3); z-index: 2; }
.pledge-circle-deco { position: absolute; top: -30px; right: -30px; width: 250px; height: 250px; border: 1px solid rgba(184, 151, 90, 0.2); border-radius: 50%; z-index: 1; }
.pledge-img {
    transform: scale(1.15) !important;
    transform-origin: center center;
}
.pledge-caption { font-family: 'Optician Sans', sans-serif; font-style: italic; font-size: 14px; color: rgba(255, 255, 255, 0.8); margin-top: 15px; text-align: right; max-width: 450px; margin-left: auto; }

/* =============================================
   7A. NEW PREMIUM PLEDGE SECTION (SANDBOXED)
   ============================================= */
.premium-pledge-section {
    background-color: #26150F;
    padding: 100px 20px 60px 20px;
    font-family: 'Base 900 Sans', sans-serif;
    color: #EAE1D8;
}

.premium-pledge-section .pledge-container {
    display: block !important; /* <-- This breaks the old horizontal row rule! */
    max-width: 1100px;
    margin: 0 auto;
}

.premium-pledge-section .pledge-top-row {
    display: flex;
    gap: 80px;
    align-items: center;
    margin-bottom: 80px;
}

.premium-pledge-section .pledge-text-col {
    flex: 1;
}

.premium-pledge-section .pledge-overline {
    display: block;
    color: #A68A5E;
    font-size: 11px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 20px;
}

.premium-pledge-section .pledge-title {
    font-family: 'Optician Sans', sans-serif;
    font-size: 48px;
    color: #F4EFEA;
    font-weight: 400;
    line-height: 1.15;
    margin: 0 0 30px 0;
}

.premium-pledge-section .pledge-title i {
    color: #A68A5E;
    font-style: italic;
    display: block;
}

.premium-pledge-section .pledge-description p {
    font-size: 15px;
    color: #B5A596;
    line-height: 1.8;
    margin-bottom: 20px;
    font-weight: 300;
}


/* Container holds the image and text side-by-side */
.pledge-signoff {
    display: flex;
    align-items: center; /* Vertically centers the text with the signature */
    gap: 20px; /* Adjust this to add more/less space between the image and text */
    margin-top: 40px; 
}

/* Stacks the name and title vertically on the right side */
.signoff-text {
    display: flex;
    flex-direction: column;
}

/* Optional: Constrain the signature size so it doesn't blow up */
.signature-img {
    max-height: 60px; /* Adjust this based on your actual image size */
    width: auto;
    object-fit: contain;
}

/* (Keep your existing .pledge-signoff-name and .pledge-signoff-title styles here) */

.premium-pledge-section .pledge-signoff {
    margin-top: 40px;
}


.premium-pledge-section font-family: 'Mr Bedfort', cursive; {
    font-family: 'Optician Sans', sans-serif;
    font-style: italic;
    color: #A68A5E;
    font-size: 20px;
    display: block;
    margin-bottom: 5px;
}

.premium-pledge-section .pledge-signoff-title {
    font-size: 10px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #8A7A6D;
    font-weight: 600;
}

.premium-pledge-section .pledge-img-col {
    flex: 1;
    position: relative;
}

.premium-pledge-section .pledge-img-decor {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 150px;
    height: 150px;
    border: 1px solid rgba(166, 138, 94, 0.2);
    border-radius: 50%;
    z-index: 0;
}

.premium-pledge-section .pledge-img-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.premium-pledge-section .pledge-img-wrapper img {
    width: 100%;
    display: block;
    aspect-ratio: 4/5;
    object-fit: cover;
}

.premium-pledge-section .pledge-img-quote {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 60px 30px 30px 30px;
    background: linear-gradient(to top, rgba(38, 21, 15, 0.9) 0%, rgba(38, 21, 15, 0) 100%);
    font-family: 'Optician Sans', sans-serif;
    font-style: italic;
    color: #EAE1D8;
    font-size: 16px;
    box-sizing: border-box;
}

.premium-pledge-section .pledge-boxes-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.premium-pledge-section .pledge-box {
    background-color: #352118;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    transition: transform 0.3s ease;
}

.premium-pledge-section .pledge-box:hover {
    transform: translateY(-5px);
}

.premium-pledge-section .box-icon-wrapper {
    width: 50px;
    height: 50px;
    border: 1px solid rgba(166, 138, 94, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
}

.premium-pledge-section .box-icon-wrapper svg {
    width: 20px;
    height: 20px;
    stroke: #A68A5E;
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.premium-pledge-section .pledge-box:nth-child(3) .box-icon-wrapper svg {
    width: 24px;
    height: 24px;
    stroke-width: 1.2;
}

.premium-pledge-section .box-title {
    font-family: 'Optician Sans', sans-serif;
    font-size: 20px;
    color: #F4EFEA;
    margin: 0 0 15px 0;
    font-weight: 400;
}

.premium-pledge-section .box-text {
    font-size: 13px;
    color: #A49586;
    line-height: 1.6;
    margin: 0;
    font-weight: 300;
}

.premium-pledge-section .pledge-bottom-bar {
    border-top: 1px solid rgba(166, 138, 94, 0.2);
    padding-top: 30px;
    text-align: center;
}

.premium-pledge-section .pledge-bottom-text {
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #8A7A6D;
    font-weight: 600;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.premium-pledge-section .pledge-bottom-text span {
    color: #A68A5E;
}


/* =============================================
   8. BOOK A MEETING SECTION
   ============================================= */
.meeting-section { 
    padding: 120px 50px; 
    text-align: center; 
    background-color: #FFFFFF; 
}
.meeting-intro h2 { 
    font-family: 'Optician Sans', sans-serif; 
    font-size: 42px; 
    margin-bottom: 15px; 
    font-weight: 400; 
    color: var(--text-main);
}
.meeting-intro p { 
    font-family: 'Base 900 Sans', sans-serif; 
    font-size: 16px; 
    color: rgba(61, 26, 18, 0.7); 
    max-width: 600px; 
    margin: 0 auto 50px auto; 
    line-height: 1.6;
}
.meeting-card { 
    display: flex; 
    background: #FFFFFF; 
    max-width: 1000px; 
    margin: 0 auto; 
    border-radius: 24px; 
    overflow: hidden; 
    box-shadow: 0 15px 40px rgba(0,0,0,0.08); 
    text-align: left;
    border: 1px solid var(--border-soft);
}
.meeting-photo { 
    flex: 1; 
    background: var(--husk-velvet); 
    position: relative; 
    min-height: 400px;
}
.meeting-photo img { width: 100%; height: 100%; object-fit: cover; }
.meeting-quote { 
    position: absolute; 
    bottom: 30px; 
    left: 30px; 
    color: #FFFFFF; 
    font-family: 'Optician Sans', sans-serif; 
    font-style: italic; 
    font-size: 20px; 
    text-shadow: 0 2px 10px rgba(0,0,0,0.5); 
    margin: 0;
}
.meeting-details { 
    flex: 1.2; 
    padding: 60px 50px; 
    display: flex; 
    flex-direction: column; 
    justify-content: center; 
}
.meeting-details h3 { 
    font-family: 'Optician Sans', sans-serif; 
    font-size: 28px; 
    margin-bottom: 30px; 
    font-weight: 400; 
    color: var(--text-main);
}
.meeting-perks { list-style: none; margin-bottom: 40px; padding: 0; }
.meeting-perks li { display: flex; gap: 20px; margin-bottom: 25px; align-items: center; }
.meeting-perks .icon { 
    font-size: 20px; 
    color: var(--amber-liquid); 
    background: var(--blush-oak); 
    width: 50px; 
    height: 50px; 
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center;
}
.meeting-perks div strong { font-family: 'Base 900 Sans', sans-serif; font-size: 15px; color: var(--text-main); }
.meeting-perks div { font-family: 'Base 900 Sans', sans-serif; font-size: 14px; color: rgba(61, 26, 18, 0.6); line-height: 1.4; margin-top: 4px; }
.meeting-details .btn-pill { align-self: flex-start; margin-bottom: 20px; }
.meeting-fineprint { font-family: 'Base 900 Sans', sans-serif; font-size: 12px; color: rgba(61,26,18,0.4); margin: 0; }

/* =============================================
   9. CONTACT / JOIN SECTION
   ============================================= */
.contact-section { padding: 120px 50px; background-color: var(--husk-velvet); }
.contact-container { display: flex; max-width: 1100px; margin: 0 auto; gap: 60px; align-items: center; }
.contact-image-col { flex: 1; }
.contact-img { width: 100%; height: auto; border-radius: 24px; box-shadow: 0 20px 40px rgba(61, 26, 18, 0.15); object-fit: cover; }
.contact-form-col { flex: 1.2; }
.join-overline { font-family: 'Base 900 Sans', sans-serif; font-size: 12px; color: var(--gold-oak); letter-spacing: 0.15em; font-weight: 700; margin-bottom: 15px; text-transform: uppercase; }
.join-heading { font-family: 'Optician Sans', sans-serif; font-size: 48px; color: var(--text-main); margin-bottom: 15px; font-weight: 400; }
.join-subtext { font-family: 'Base 900 Sans', sans-serif; font-size: 16px; color: rgba(61, 26, 18, 0.7); margin-bottom: 40px; font-weight: 300; line-height: 1.6; }
.join-form { display: flex; flex-direction: column; gap: 35px; }
.form-group-line label { display: block; font-family: 'Base 900 Sans', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 0.15em; color: rgba(61, 26, 18, 0.8); margin-bottom: 5px; text-transform: uppercase; }
.form-group-line input { width: 100%; background: transparent; border: none; border-bottom: 1px solid rgba(61, 26, 18, 0.3); padding: 12px 0; font-family: 'Base 900 Sans', sans-serif; font-size: 18px; color: var(--text-main); transition: border-color 0.3s ease; }
.form-group-line input:focus { outline: none; border-bottom-color: var(--crimson-oak); }
.pills-label { display: block; font-family: 'Base 900 Sans', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 0.15em; color: rgba(61, 26, 18, 0.8); margin-bottom: 15px; text-transform: uppercase; }
.pills-group { display: flex; flex-wrap: wrap; gap: 12px; }
.pills-group input[type="radio"] { display: none; }
.pill-radio { background-color: #FDF8F5; color: var(--text-main); padding: 12px 24px; border-radius: 50px; font-family: 'Base 900 Sans', sans-serif; font-size: 13px; font-weight: 400; cursor: pointer; transition: all 0.3s ease; border: 1px solid transparent; }
.pill-radio:hover { background-color: #FFFFFF; box-shadow: 0 4px 10px rgba(0,0,0,0.05); }
.pills-group input[type="radio"]:checked + .pill-radio { background-color: var(--crimson-oak); color: #FFFFFF; }

/* Ensure the cursor turns into a pointer finger when hovering over pills */
.interest-pill {
    cursor: pointer;
    user-select: none; /* Stops the text from accidentally highlighting when clicked rapidly */
    transition: all 0.3s ease;
}

/* The new 'Selected' state - Change these colors to match your theme! */
.interest-pill.selected {
    background-color: #3D1A12; /* Your dark espresso color */
    color: #FFFFFF;
    border: 1px solid #3D1A12;
}
/* --- FIXING THE OVERLAP --- */
.join-stage-wrapper {
    display: flex;
    align-items: center;
    gap: 80px; /* Forces a strict 80px gap between the image and form */
    width: 100%;
}

.join-image-col {
    flex: 1; /* Takes up 1 part of the space */
    max-width: 50%; /* Prevents the image from growing past the halfway mark */
    position: relative;
    z-index: 1;
}

.join-form-col {
    flex: 1.1; /* Takes up slightly more space for the form */
    z-index: 5; /* Ensures the form is always clickable on top */
}

/* --- STYLING THE NEW DETAILS TEXTAREA --- */
.join-form-group textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid #C4B5A6;
    padding: 12px 0;
    font-family: 'Libre Franklin', sans-serif;
    font-size: 16px;
    color: #3D1A12;
    outline: none;
    transition: border-color 0.3s;
    resize: vertical; /* Allows the user to drag the corner to make it taller if they type a lot! */
}

.join-form-group textarea::placeholder {
    color: #AFA295;
}

.join-form-group textarea:focus {
    border-bottom: 1px solid #8C1515;
}

/* Keep it stacking nicely on mobile */
@media (max-width: 900px) {
    .join-stage-wrapper {
        flex-direction: column;
        gap: 40px;
    }
    .join-image-col {
        max-width: 100%;
    }
}

/* =============================================
   JOIN SECTION SUCCESS ANIMATION STATES
   ============================================= */
.join-container {
    position: relative; /* Essential for containing the absolute success overlay */
    overflow: hidden;
    border-radius: 24px; /* Optional: matches your site's card/image radius */
}

.join-stage-wrapper {
    display: flex;
    width: 100%;
    transition: opacity 0.5s ease, filter 0.5s ease;
    will-change: opacity, filter;
}

/* When the form is submitted, JavaScript adds this class to fade the form away */
.join-stage-wrapper.form-faded {
    opacity: 0;
    filter: blur(10px);
    pointer-events: none;
}

/* THE SUCCESS OVERLAY STAGE */
.join-success-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: opacity;
}

/* Activated via JavaScript */
.join-success-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

/* Forces your video or GIF to act as a full-bleed background */
.success-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.success-darkener {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(38, 21, 15, 0.65); /* Espresso-tinted translucent overlay */
    z-index: 2;
}

/* The Animated Text Content */
.success-text-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: #FFFFFF;
    padding: 0 20px;
    transform: translateY(30px);
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.join-success-overlay.active .success-text-content {
    transform: translateY(0); /* Slides up smoothly when activated */
}

.success-text-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 64px;
    color: var(--gold-oak, #B8975A);
    margin: 0 0 10px 0;
    font-style: italic; /* Beautiful stylized Italian typography */
    letter-spacing: 0.05em;
}

.success-text-content p {
    font-family: 'Libre Franklin', sans-serif;
    font-size: 20px;
    margin: 0;
    font-weight: 300;
    letter-spacing: 0.02em;
}

/* =============================================
   10. TRADE PAGE Specifics
   ============================================= */
.trade-hero { padding: 100px 50px 50px 50px; background-color: var(--bg-primary); text-align: center; }
.trade-header-text { max-width: 800px; margin: 0 auto 40px auto; }
.trade-header-text h1 { font-family: 'Optician Sans', sans-serif; font-size: 48px; color: var(--text-main); margin-bottom: 20px; font-weight: 400;}
.trade-header-text p { font-size: 18px; color: rgba(61, 26, 18, 0.8); }

.local-video-wrapper { max-width: 900px; margin: 0 auto; border-radius: 12px; overflow: hidden; box-shadow: 0 15px 40px rgba(61, 26, 18, 0.15); background-color: #000; position: relative; }
.local-video-wrapper video { width: 100%; height: auto; display: block; aspect-ratio: 16 / 9; object-fit: cover; }
.play-overlay { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); display: flex; flex-direction: column; align-items: center; color: #FFFFFF; cursor: pointer; transition: transform 0.3s ease; z-index: 10; width: 100%; }
.play-overlay:hover { transform: translate(-50%, -50%) scale(1.05); }
.play-circle { width: 85px; height: 85px; border: 3px solid #FFFFFF; border-radius: 50%; display: flex; justify-content: center; align-items: center; background: rgba(255, 255, 255, 0.2); backdrop-filter: blur(4px); font-size: 26px; margin-bottom: 15px; padding-left: 6px; box-shadow: 0 4px 20px rgba(0,0,0,0.5); }
.play-overlay p { font-family: 'Base 900 Sans', sans-serif; font-size: 13px; font-weight: 700; letter-spacing: 0.15em; text-shadow: 0 2px 8px rgba(0,0,0,0.8); }

.trade-stats { padding: 60px 50px 100px 50px; background-color: var(--bg-primary); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; max-width: 1100px; margin: 0 auto; }
.stat-card { background-color: #FFFFFF; padding: 40px 20px; text-align: center; border-radius: 8px; box-shadow: 0 5px 15px rgba(61, 26, 18, 0.05); border-top: 4px solid var(--gold-oak); }
.stat-number { display: block; font-family: 'Optician Sans', sans-serif; font-size: 48px; font-weight: 700; color: var(--crimson-oak); margin-bottom: 10px; line-height: 1; }
.stat-symbol { font-size: 24px; color: var(--gold-oak); vertical-align: super; margin-left: 2px;}
.stat-label { font-family: 'Base 900 Sans', sans-serif; font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--text-main); }

.pdf-download-section { padding: 100px 50px; background-color: #FFFFFF; }
.pdf-download {color: var(--gold-oak); }
.pdf-container { max-width: 1100px; margin: 0 auto; display: flex; align-items: center; gap: 80px; background-color: var(--espresso-oak); border-radius: 12px; overflow: hidden; box-shadow: 0 15px 40px rgba(61, 26, 18, 0.15); }
.pdf-visual { flex: 1; background-color: var(--husk-velvet); padding: 60px; display: flex; justify-content: center; align-items: center; position: relative; }
.pdf-mockup { background: #FFFFFF; padding: 20px; border-radius: 4px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); position: relative; }
.pdf-img { max-width: 250px; height: auto; border: 1px solid rgba(61, 26, 18, 0.15); border-radius: 2px; }
.pdf-badge { position: absolute; top: -15px; right: -15px; background-color: var(--crimson-oak); color: #FFF; font-family: 'Base 900 Sans', sans-serif; font-weight: 700; font-size: 10px; letter-spacing: 0.1em; padding: 10px 15px; border-radius: 50px; box-shadow: 0 4px 10px rgba(140, 21, 21, 0.3); }
.pdf-content { flex: 1.2; padding: 60px; color: var(--text-light); text-align: center; }
.pdf-overline { font-family: 'Base 900 Sans', sans-serif; font-size: 12px; color: var(--gold-oak); letter-spacing: 0.15em; font-weight: 700; margin-bottom: 10px; text-transform: uppercase; }
.pdf-download-section .pdf-heading { text-align: center; font-family: 'Optician Sans', sans-serif; font-size: 42px; color: #FFFFFF; margin-bottom: 20px; font-weight: 400; }
.italic-gold { font-style: italic; color: var(--gold-oak); }
.pdf-desc { font-family: 'Base 900 Sans', sans-serif; font-size: 15px; color: rgba(255, 255, 255, 0.8); margin-bottom: 30px; line-height: 1.8; font-weight: 300; }
.pdf-highlights { margin-bottom: 40px; list-style-type: none; padding: 0; display: flex; flex-direction: column; align-items: center; }
.pdf-highlights li { font-family: 'Base 900 Sans', sans-serif; font-size: 14px; color: #FFFFFF; margin-bottom: 12px; display: flex; align-items: center; gap: 15px; font-weight: 300; justify-content: center; text-align: center; }
.pdf-highlights li span { color: var(--gold-oak); font-size: 12px; }
.pdf-buttons { display: flex; justify-content: center; gap: 15px; flex-wrap: wrap; margin-top: 10px; }
.pdf-buttons .btn-taupe { margin-top: 0; align-self: auto; }

.sample-form-section { padding: 100px 50px; background-color: var(--bg-primary); }
.trade-action-split { display: flex; align-items: center; justify-content: center; max-width: 1200px; margin: 0 auto; gap: 30px; }
.booking-col { flex: 1; display: flex; justify-content: flex-end; }
.booking-widget-large { background-color: #FFFFFF; border: 2px solid var(--gold-oak); border-radius: 20px; padding: 50px 40px; max-width: 450px; box-shadow: 0 15px 40px rgba(184, 151, 90, 0.15); text-align: left; }
.booking-widget-large h2 { font-family: 'Optician Sans', sans-serif; font-size: 32px; color: var(--text-main); margin-bottom: 15px; font-weight: 400; }
.booking-widget-large p { font-family: 'Base 900 Sans', sans-serif; font-size: 15px; color: rgba(61, 26, 18, 0.8); line-height: 1.8; margin-bottom: 30px; font-weight: 300; }
.booking-btn { border: 1px solid var(--gold-oak); color: var(--text-main); }
.booking-btn:hover { background-color: var(--gold-oak); color: #FFFFFF; }

.dynamic-calendar { display: inline-block; background-color: #FFFFFF; border: 2px solid var(--gold-oak); border-radius: 8px; width: 80px; text-align: center; overflow: hidden; margin-bottom: 25px; box-shadow: 0 5px 15px rgba(184, 151, 90, 0.15); }
.cal-month { display: block; background-color: transparent; color: var(--gold-oak); font-family: 'Base 900 Sans', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 0.15em; padding: 8px 0 4px 0; text-transform: uppercase; border-bottom: 1px solid rgba(184, 151, 90, 0.3); }
.cal-day { display: block; color: var(--gold-oak); font-family: 'Optician Sans', sans-serif; font-style: italic; font-size: 34px; font-weight: 400; padding: 8px 0 12px 0; line-height: 1; }

.or-divider { font-family: 'Optician Sans', sans-serif; font-size: 48px; font-style: italic; color: var(--gold-oak); padding: 0 20px; opacity: 0.8; }
.form-col { flex: 1.2; display: flex; flex-direction: column; }
.form-intro-text { margin-bottom: 30px; text-align: center; }
.form-intro-text h2 { font-family: 'Optician Sans', sans-serif; font-size: 38px; color: var(--text-main); margin-bottom: 15px; font-weight: 400; }
.form-intro-text p { font-family: 'Base 900 Sans', sans-serif; font-size: 15px; color: rgba(61, 26, 18, 0.8); font-weight: 300; line-height: 1.8; }
.trade-form { background-color: #FFFFFF; padding: 40px; border-radius: 12px; border: 1px solid var(--border-soft); box-shadow: 0 10px 30px rgba(61,26,18,0.05);}
.form-group { margin-bottom: 20px; }
.form-row { display: flex; gap: 20px; }
.form-group.half { flex: 1; }
.trade-form label { display: block; font-family: 'Base 900 Sans', sans-serif; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 8px; color: var(--text-main); }
.trade-form input, .trade-form textarea { width: 100%; padding: 12px 15px; border: 1px solid var(--border-soft); border-radius: 4px; background-color: #FAFAFA; font-family: 'Base 900 Sans', sans-serif; font-size: 14px; color: var(--text-main); transition: border-color 0.3s ease; }
.trade-form input:focus, .trade-form textarea:focus { outline: none; border-color: var(--gold-oak); background-color: #FFFFFF;}
.trade-form textarea { resize: vertical; }

/* =============================================
   11. COMMON: FAQ
   ============================================= */
.faq-section { padding: 100px 50px 150px 50px; background-color: var(--bg-primary); }
.faq-section .section-intro h4 { font-family: 'Base 900 Sans', sans-serif; font-size: 12px; color: var(--gold-oak); letter-spacing: 0.15em; font-weight: 700; margin-bottom: 15px; text-transform: uppercase;}
.faq-section .section-intro h2 { font-family: 'Optician Sans', sans-serif; font-size: 42px; color: var(--text-main); margin-bottom: 60px; font-weight: 400; text-transform: none;}
.italic-crimson { font-style: italic; color: var(--crimson-oak); }
.faq-container { background-color: #FFFFFF; max-width: 900px; margin: 0 auto; border-radius: 12px; box-shadow: 0 5px 25px rgba(61, 26, 18, 0.05); padding: 20px 60px; }
.faq-item { border-bottom: 1px solid var(--border-soft); }
.faq-item:last-child { border-bottom: none; }
.faq-header { display: flex; justify-content: space-between; align-items: center; padding: 30px 0; cursor: pointer; transition: color 0.3s ease; }
.faq-header h3 { font-family: 'Optician Sans', sans-serif; font-size: 20px; color: var(--text-main); font-weight: 400; margin: 0; transition: color 0.3s ease; }
.faq-item.active .faq-header h3 { color: var(--crimson-oak); }
.faq-icon { width: 32px; height: 32px; border-radius: 50%; border: 1px solid var(--border-soft); display: flex; justify-content: center; align-items: center; font-family: 'Base 900 Sans', sans-serif; font-size: 18px; font-weight: 300; color: var(--text-main); transition: all 0.3s ease; }
.faq-item.active .faq-icon { border-color: var(--crimson-oak); color: var(--crimson-oak); transform: rotate(45deg); }
.faq-item .expandable-content { padding-top: 0; }
.faq-item .expandable-content.is-collapsed { max-height: 0; padding-bottom: 0; }
.faq-item .expandable-content.is-expanded { max-height: 500px; padding-bottom: 30px; }
.faq-item .expandable-content p { font-family: 'Base 900 Sans', sans-serif; font-size: 15px; color: rgba(61, 26, 18, 0.8); line-height: 1.8; margin: 0; }

/* =============================================
   12. FOOTER (ULTIMATE GRID LAYOUT)
   ============================================= */
.new-premium-footer { 
    padding: 80px 50px 40px 50px !important; 
    background-color: var(--espresso-oak) !important; 
    color: #FFFFFF !important; 
    font-family: 'Libre Franklin', sans-serif !important; 
}

.new-premium-footer .footer-container { 
    display: grid !important; 
    /* This creates 4 strict columns: Brand (widest), Links (narrow), Badges (medium), Contact (wide) */
    grid-template-columns: 1.6fr 0.8fr 1.2fr 1.4fr !important; 
    gap: 40px !important;
    max-width: 1250px !important; 
    margin: 0 auto 50px auto !important; 
    align-items: start !important; 
}

/* Strip away the old flex hacks so Grid can take over */
.footer-brand, .footer-links, .footer-badges-col, .footer-contact {
    width: 100% !important; 
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Fix the Logo Text Wrapping */
.footer-logo-text { 
    font-family: 'Optician Sans', sans-serif; 
    font-size: 38px !important; 
    font-weight: 400; 
    font-style: italic; 
    color: #E4D4C1 !important; 
    display: block;
    margin-bottom: 20px;
    white-space: nowrap !important; /* CRITICAL: Forces the text to stay on one elegant line */
}

.footer-est-text { font-size: 15px; color: rgba(255,255,255,0.6); margin-bottom: 25px; }
.footer-description { font-size: 14px; color: rgba(255,255,255,0.4); line-height: 1.8; max-width: 320px; }

.footer-col-title { 
    font-size: 12px; 
    letter-spacing: 0.15em; 
    font-weight: 700; 
    color: #B8975A !important; 
    text-transform: uppercase; 
    margin-bottom: 25px; 
    font-family: 'Base 900 Sans', sans-serif;
}
.footer-links a { display: block; font-size: 15px; color: #E4D4C1 !important; margin-bottom: 18px; text-decoration: none; transition: color 0.3s ease;}
.footer-links a:hover { color: #FFFFFF !important; }

/* Drop the Badges into the "Pocket" */
.footer-badges-col { 
    display: flex !important; 
    flex-direction: row !important; 
    align-items: center !important; 
    justify-content: center !important; 
    gap: 20px !important; 
    margin-top: 45px !important; /* Pushes the badges down into the center of the empty space */
}

/* Standardize the Badge Sizes (DOUBLED) */
.sba-badge { 
    height: 130px !important; /* Doubled from 65px */
    width: auto !important; 
    border-radius: 8px; /* Slightly softened the corners for the larger size */
}

.gf-wrapper { 
    height: 130px; /* Doubled from 65px */
    width: 130px; 
    display: flex; 
    align-items: center; 
    justify-content: center;
}

.gf-badge { 
    height: 70px; /* Doubled from 65px CHANGE TO 130 for Award win */
    transform: scale(2.8); /* Kept the exact same zoom ratio to hide that white border! */
    transform-origin: center center; 
    pointer-events: none; 
}

.contact-pair { margin-bottom: 25px; }
.contact-label { display: block; font-size: 11px; color: rgba(255,255,255,0.4); letter-spacing: 0.15em; margin-bottom: 8px; font-weight: 700; }
.contact-value { font-size: 16px; color: #E4D4C1; margin: 0; }

.new-premium-footer .footer-bottom-bar { max-width: 1250px; margin: 0 auto; }
.new-premium-footer .footer-divider { border: none; border-top: 1px solid rgba(255,255,255,0.2); margin: 0 0 30px 0; }
.new-premium-footer .footer-bottom-content { display: flex; justify-content: space-between; align-items: center; margin-bottom: 25px; }
.footer-dietary { font-size: 11px; letter-spacing: 0.15em; color: #B8975A !important; font-weight: 700; margin: 0; }
.footer-copyright { font-size: 12px; color: rgba(255,255,255,0.4); margin: 0; }
.footer-disclaimer { font-size: 12px; color: rgba(255,255,255,0.3); text-align: left; margin: 0; line-height: 1.6; }

/* =============================================
   13. MEDIA QUERIES (MOBILE)
   ============================================= */
@media (max-width: 1024px) {
    .interactive-recipes .recipes-grid { grid-template-columns: 1fr 1fr; gap: 30px;}
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .new-hero { padding: 120px 40px 60px 40px; }
    .hero-inner { gap: 40px; }
    .new-hero h1 { font-size: 42px; }
    .hero-deco-circle { width: 500px; height: 500px; right: -10%; }
}

@media (max-width: 900px) {
    .premium-pledge-section .pledge-top-row {
        flex-direction: column;
        gap: 50px;
    }
    .premium-pledge-section .pledge-boxes-row {
        grid-template-columns: 1fr;
    }
    .premium-pledge-section .pledge-img-decor {
        display: none;
    }
}

@media (max-width: 768px) {
    header { padding: 20px; position: sticky; top: 0; background-color: var(--bg-primary); }
    .header-inner { flex-direction: column; text-align: center; gap: 15px; }
    .logo-bottom { font-size: 24px; } 
    header nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
    header nav a { margin: 0; font-size: 10px; }

    .new-hero { padding: 40px 20px 80px 20px; min-height: auto; }
    .hero-inner { flex-direction: column; text-align: center; gap: 50px; }
    .hero-deco-circle { display: none; } 
    .hero-text-container { padding-right: 0; max-width: 100%; }
    .new-hero h1 { font-size: 36px; }
    .new-hero p.hero-subtext { margin: 0 auto 30px auto; }
    .hero-buttons { justify-content: center; flex-wrap: wrap; }
    .hero-media-container { width: 100%; }
    .hero-media-wrapper { max-width: 100%; }

    .featured-grid-card { flex-direction: column; }
    
    .pledge-section { padding: 60px 20px; }
    .pledge-container { flex-direction: column; gap: 40px; text-align: center; }
    .pledge-photo-panel { width: 100%; text-align: center; }
    .pledge-photo-card { margin: 0 auto; }
    .pledge-circle-deco { display: none; }
    .pledge-caption { text-align: center; margin: 15px auto 0 auto; }
    .pledge-signature { margin: 40px auto 0 auto; }

/* =============================================
   FRESH RETAIL LOCATOR STYLES
   ============================================= */

    .feature-cocktail { flex-direction: column; }
    .featured-image-wrap, .featured-body { width: 100%; flex: none; }
    .featured-body { padding: 40px 30px; }

    .interactive-recipes { padding: 80px 20px; }
    .interactive-recipes .recipes-grid { grid-template-columns: 1fr; gap: 25px; }
    .interactive-recipes .section-intro p { font-size: 14px; margin-bottom: 40px;}
    .interactive-recipes .card-image-wrap { height: 220px; }
    .filter-btn { padding: 8px 18px; font-size: 11px; gap: 10px;}
    .recipe-filters { gap: 10px; margin-bottom: 50px;}
    
    .faq-section { padding: 80px 20px; }
    .faq-container { padding: 10px 20px; }
    .faq-header h3 { font-size: 18px; }

    .trade-hero { padding: 50px 20px; }
    .trade-header-text h1 { font-size: 36px; }
    .trade-stats { padding: 20px 20px 80px 20px; }
    .stats-grid { grid-template-columns: 1fr; gap: 20px; }
    
    .pdf-download-section { padding: 60px 20px; }
    .pdf-container { flex-direction: column; gap: 0; text-align: center; }
    .pdf-content { padding: 40px 30px; }
    .pdf-visual { padding: 40px 20px; width: 100%; }
    .pdf-buttons { flex-direction: column; align-items: stretch; }
    
    .sample-form-section { padding: 60px 20px; }
    .trade-action-split { flex-direction: column; text-align: center; gap: 10px; }
    .booking-col { justify-content: center; }
    .or-divider { margin: 20px 0; }
    .booking-widget-large { text-align: center; padding: 40px 30px; }
    .form-intro-text { text-align: center; }
    .form-row { flex-direction: column; gap: 0; }
    .trade-form { padding: 30px 20px; }

    .meeting-section, .contact-section { padding: 80px 20px; }
    .meeting-card { flex-direction: column; }
    .meeting-photo { min-height: 250px; }
    .meeting-details { padding: 40px 30px; }
    .contact-container { flex-direction: column; gap: 40px; }
    .join-heading { font-size: 38px; }
    .pills-group { justify-content: center; }

    /* MOBILE FOOTER OVERRIDES */
    .new-premium-footer { padding: 60px 20px 40px 20px !important; }
    .new-premium-footer .footer-container { 
        display: grid !important;
        grid-template-columns: 1fr !important; /* Forces a single column vertical stack */
        gap: 45px !important; 
    }
    .footer-brand, .footer-links, .footer-badges-col, .footer-contact { text-align: left !important; }
    
    .footer-logo-text { white-space: normal !important; } /* Allows wrapping on tiny screens if needed */
    
    .footer-badges-col {
        margin-top: 0 !important; /* Resets the pocket drop */
        justify-content: flex-start !important;
    }
    
    .new-premium-footer .footer-bottom-content { flex-direction: column !important; align-items: flex-start !important; gap: 12px !important; }
    .footer-dietary { line-height: 1.8 !important; }
    .footer-disclaimer { text-align: left !important; margin-top: 25px !important; }
}

/* =============================================
   APPLE-STYLE CINEMATIC SCROLL (STATIC-SCALE)
   ============================================= */
.static-scale-section {
    height: 400vh; /* Critical: Creates the timeline for scrolling */
    background-color: var(--espresso-oak, #26150F); 
    position: relative;
    overflow: visible; 
}

.sticky-stage {
    position: sticky;
    top: 0;
    height: 100vh; 
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* --- THE AMBER FLARE --- */
.amber-flare {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(204, 125, 68, 0.4) 0%, rgba(204, 125, 68, 0) 60%);
    border-radius: 50%;
    z-index: 0;
    opacity: 0.3; 
    will-change: transform, opacity;
}

/* --- THE BOTTLE LAYERS --- */
.static-bottle-layer {
    position: absolute;
    top: 45%; 
    left: 0; /* Anchors strictly to the left edge */
    transform: translateY(-50%); /* Only adjusts vertically now */
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.cinematic-bottle {
    height: 75vh; /* Full size presentation */
    width: auto;
    display: block;
    position: absolute;
}

.bottle-blur-base {
    z-index: 1;
    filter: blur(4px) drop-shadow(0 30px 40px rgba(0,0,0,0.6)); 
    will-change: filter;
}

.bottle-sharp-mask {
    z-index: 2;
    mask-image: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%);
    mask-size: 100% 100%;
    mask-repeat: no-repeat;
    -webkit-mask-image: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%);
    -webkit-mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    will-change: mask-image;
}

.static-bottle-glare {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(105deg, transparent 30%, rgba(255,255,255,0.5) 45%, rgba(255,255,255,0.7) 50%, transparent 55%);
    -webkit-mask-image: url('images/FrontBottle-transparent.png');
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center center;
    mask-image: url('images/FrontBottle-transparent.png');
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center center;
    z-index: 10;
    transform: translateY(-100%);
    will-change: transform;
    mix-blend-mode: overlay;
    pointer-events: none;
}

/* --- PARALLAX DIORAMA ELEMENTS --- */
.diorama-item {
    position: absolute;
    will-change: transform;
    pointer-events: none;
}

.fg-element {
    bottom: -10%;
    right: 15%;
    height: 180px;
    z-index: 20; 
    filter: blur(12px); 
}

/* --- THE TEXT LAYER --- */
.scroll-text-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 50; /* Guarantees it sits above the bottle and glare */
    pointer-events: none; 
}

.scroll-step {
    position: absolute;
    top: 80%; 
    left: 0; /* Anchors strictly to the left edge */
    width: 100%;
    padding: 0 90px 0 10px;
    box-sizing: border-box; /* CRITICAL: Prevents padding from pushing the text off-center */
    text-align: center;
    opacity: 0; 
    will-change: opacity, transform;
}

.scroll-step h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    color: var(--gold-oak, #B8975A);
    margin-bottom: 10px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.8);
}

.scroll-step h2 i {
    font-style: italic;
}

.scroll-step p {
    font-family: 'Libre Franklin', sans-serif;
    font-size: 18px;
    color: #FFFFFF;
    line-height: 1.6;
    margin: 0;
    text-shadow: 0 2px 10px rgba(0,0,0,0.8);
}

/* --- MOBILE ADJUSTMENTS --- */
@media (max-width: 768px) {
    .cinematic-bottle { height: 60vh; } /* Shrinks bottle so text has more room */
    .static-bottle-layer { top: 40%; }
    .scroll-step { top: 75%; }
    .scroll-step h2 { font-size: 32px; }
    .scroll-step p { font-size: 15px; }
    .amber-flare { width: 100vw; height: 100vw; }
    .diorama-item { display: none; } 
}
/* =============================================
   MOBILE FIXES (COMBINED & CORRECTED)
   ============================================= */
@media (max-width: 768px) {
    
    /* --- 1. HEADER OVERLAP FIX --- */
    .header-inner {
        flex-direction: column !important;
        gap: 2px !important; 
        text-align: center !important;
    }
    .logo-container {
        align-items: center !important;
        text-align: center !important;
    }

/* --- SHRINK MOBILE HEADER & HIDE BADGE --- */
    .header-badge {
        display: none !important; /* Hides the badge on mobile only */
    }
    
    .header-inner {
        padding-top: 15px !important; /* Tightens top space */
        padding-bottom: 15px !important; /* Tightens bottom space */
        gap: 15px !important; /* Reduces the gap between the logo and the nav links */
    }
    
    /* Slightly tighten the space around the nav links to compress the height further */
    header nav {
        margin-top: 5px !important;
        gap: 10px !important;
    };
    
    nav {
        display: flex !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        gap: 15px !important;
    }
    nav a { margin: 0 !important; }
    
    

 /* --- 2. CINEMATIC SCROLL FIX (LOWERED TO CLEAR HEADER) --- */
    .static-bottle-layer {
        position: absolute !important;
        top: 65% !important; /* Shifted down from 52% to clear the sticky header */
        left: 0 !important; 
        width: 100% !important; 
        height: 62vh !important; /* Size remains exactly the same! */
        transform: translateY(-50%) !important; 
        display: block !important; 
    }
    
    .cinematic-bottle {
        position: absolute !important; 
        top: 0 !important;
        left: 50% !important; 
        transform: translateX(calc(-50% + 12px)) !important; /* Keeps your centering nudge */
        height: 100% !important; 
        width: auto !important;
        max-width: none !important; 
        margin: 0 !important;
    }

    .scroll-step {
        top: 85% !important; /* Shifted down to stay perfectly tucked under the lowered bottle */
        left: 0 !important;
        width: 100% !important;
        padding: 0 20px !important;
        text-align: center !important;
    }
    
    /* --- STOP MOBILE MASK GLITCH (WHITE BOX) --- */
    .bottle-sharp-mask, 
    .static-bottle-glare { 
        display: none !important; /* Hides the layers causing the white box */
    }
    
    .bottle-blur-base { 
        filter: drop-shadow(0 20px 30px rgba(0,0,0,0.6)) !important; /* Removes the blur but keeps the shadow */
        opacity: 1 !important; 
    }
    
    /* --- 3. HERO SECTION ORDER --- */
    .hero-inner {
        display: flex !important;
        flex-direction: column !important;
    }
    .hero-text-container {
        display: contents !important; 
    }
    .hero-overline { order: 1 !important; }
    .new-hero h1 { order: 2 !important; margin-bottom: 20px !important; }
    .hero-media-container { 
        order: 3 !important; 
        margin-bottom: 25px !important;
        width: 100% !important;
    }
    .new-hero p.hero-subtext { order: 4 !important; margin: 0 auto 30px auto !important; }
    .hero-buttons { 
        order: 5 !important; 
        display: flex !important; 
        justify-content: center !important; 
        flex-wrap: wrap !important;
        gap: 15px !important;
    }


    /* --- 4. PLEDGE SECTION ORDER --- */
    .premium-pledge-section .pledge-top-row {
        display: flex !important;
        flex-direction: column !important;
    }
    .premium-pledge-section .pledge-text-col {
        display: contents !important; 
    }
    .premium-pledge-section .pledge-overline { order: 1 !important; }
    .premium-pledge-section .pledge-title { order: 2 !important; }
    .premium-pledge-section .pledge-description { order: 3 !important; }
    .premium-pledge-section .pledge-img-col { 
        order: 4 !important; 
        margin: 30px 0 !important; 
        width: 100% !important;
    }
    .premium-pledge-section .pledge-signoff { 
        order: 5 !important; 
        justify-content: center !important; 
        margin-top: 0 !important;
    }
    
    /* --- MAKE HEADER LOGO TEXT BIGGER ON MOBILE --- */
    .logo-top {
        font-size: 15px !important; /* Increased from 13px */
        letter-spacing: 0.25em !important; 
    }
    
    .logo-bottom {
        font-size: 30px !important; /* Increased from 24px */
        margin-top: 5px !important; /* Adds just a tiny bit of breathing room between the two lines */
    }
}