/* ============================================================
       GLOBAL & VARIABLES
    ============================================================ */
:root {
    --accent: #f5c842;
    --accent-mid: #e07b39;
    --accent-dim: rgba(245, 200, 66, .16);
    --accent-glow: rgba(245, 200, 66, .38);

    --gold: #c9a84c;
    --gold-light: #f0d080;
    --amber: #e07b39;
    --teal: #2dd4bf;
    --deep-blue: #0d1b3e;
    --dark-bg: #060d1f;
    --dark-2: #0a1428;
    --dark-3: #111a35;
    --glass-bg: rgba(255, 255, 255, 0.06);
    --glass-border: rgba(255, 255, 255, 0.12);
    --glass-blur: blur(18px);
    --text-primary: #f4f0e8;
    --text-muted: #a0a8b8;
    --font-display: 'Cormorant Garamond', serif;
    --font-body: 'DM Sans', sans-serif;
    --font-italic: 'Playfair Display', serif;
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--dark-bg);
    color: var(--text-primary);
    overflow-x: hidden;
    cursor: none;
}


/* ============================================================
       CUSTOM SCROLLBAR
    ============================================================ */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--dark-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 3px;
}

/* ============================================================
       Custom cursor
    ============================================================ */

#cdot,
#cring {
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
}

#cdot {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent-glow);
}

#cring {
    width: 36px;
    height: 36px;
    border: 1.5px solid var(--accent);
    border-radius: 50%;
    opacity: .5;
    z-index: 9998;
    transition: width .3s, height .3s, opacity .3s;
}

/* ── Back to top ─────────────────────────────────────────────── */
#btt {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 500;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: .9rem;
    text-decoration: none;
    cursor: none;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--tr);
}

#btt.vis {
    opacity: 1;
    transform: translateY(0);
}

#btt:hover {
    background: var(--accent-dim);
    border-color: var(--accent);
}

/* ============================================================
       PARTICLES CANVAS
    ============================================================ */
#particles-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

/* ============================================================
       NAVBAR
    ============================================================ */

.logo img {
    width: 150px;

}

footer .logo img {
    width: 150px;
    margin-bottom: 20px;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.2rem 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(6, 13, 31, 0.85);
    backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid var(--glass-border);
    padding: 0.7rem 0;
}

.navbar-brand {
    font-family: var(--font-display);
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--gold) !important;
    letter-spacing: 0.08em;
    text-decoration: none;
}

.navbar-brand span {
    color: var(--text-primary);
}

.nav-link {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted) !important;
    transition: var(--transition);
    padding: 0.4rem 1rem !important;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    right: 50%;
    height: 1px;
    background: var(--gold);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--gold) !important;
}

.nav-link:hover::after {
    left: 1rem;
    right: 1rem;
}

.navbar-toggler {
    border: 1px solid var(--glass-border);
    padding: 0.4rem 0.6rem;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28201%2C168%2C76%2C1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ============================================================
       GLASS CARD MIXIN
    ============================================================ */
.glass {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
}

/* ============================================================
       SECTION COMMONS
    ============================================================ */
section {
    position: relative;
    z-index: 1;
}

.section-label {
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.section-label::before {
    content: '';
    width: 32px;
    height: 1px;
    background: var(--gold);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.section-title .accent {
    background: linear-gradient(120deg, var(--gold), var(--amber));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-sub-title {
    font-size: 18px;
    color: var(--text-muted);
    padding: 0 10px;
}

.glow-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 12px var(--gold);
    display: inline-block;
}

/* ============================================================
       HERO SECTION
    ============================================================ */
#hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(13, 27, 62, 0.9) 0%, var(--dark-bg) 70%),
        radial-gradient(ellipse 40% 40% at 80% 50%, rgba(201, 168, 76, 0.12) 0%, transparent 60%),
        radial-gradient(ellipse 40% 40% at 20% 70%, rgba(45, 212, 191, 0.08) 0%, transparent 60%);
    overflow: hidden;
}

.hero-img {
    width: 100%;
    border-radius: 30px;
}

.hero-bg-orbs {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.25;
    animation: floatOrb 8s ease-in-out infinite;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: var(--gold);
    top: -150px;
    right: -100px;
    animation-delay: 0s;
}

.orb-2 {
    width: 350px;
    height: 350px;
    background: var(--teal);
    bottom: -50px;
    left: -80px;
    animation-delay: 3s;
}

.orb-3 {
    width: 250px;
    height: 250px;
    background: var(--amber);
    top: 40%;
    left: 40%;
    animation-delay: 5s;
}

@keyframes floatOrb {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-30px) scale(1.08);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 8rem 0 4rem;
}

/* .hero-glass {
    padding: 3rem 3.5rem;
    max-width: 680px;
} */

.hero-brand-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(201, 168, 76, 0.12);
    border: 1px solid rgba(201, 168, 76, 0.3);
    padding: 0.35rem 1rem;
    border-radius: 50px;
    font-size: 0.72rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 8vw, 5.5rem);
    font-weight: 700;
    line-height: 0.95;
    letter-spacing: -0.01em;
    margin-bottom: 1rem;
}

.hero-title .brand-name {
    display: block;
    background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--amber));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-title .brand-sub {
    display: block;
    color: var(--text-primary);
    font-style: italic;
    font-size: 55%;
    font-family: var(--font-italic);
    opacity: 0.85;
}

.hero-tagline {
    font-family: var(--font-italic);
    font-size: clamp(1rem, 2.2vw, 1.25rem);
    font-style: italic;
    color: var(--teal);
    margin-bottom: 1.2rem;
    letter-spacing: 0.02em;
}

.hero-desc {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

.btn-primary-gold {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: linear-gradient(135deg, var(--gold), var(--amber));
    color: var(--dark-bg);
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 0.85rem 2.2rem;
    border-radius: 50px;
    border: none;
    text-decoration: none;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-primary-gold::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.4s ease;
}

.btn-primary-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(201, 168, 76, 0.4);
    color: var(--dark-bg);
}

.btn-primary-gold:hover::before {
    transform: translateX(100%);
}

.btn-outline-glass {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: transparent;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 0.85rem 2.2rem;
    border-radius: 50px;
    border: 1px solid var(--glass-border);
    text-decoration: none;
    transition: var(--transition);
    backdrop-filter: blur(8px);
}

.btn-outline-glass:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-3px);
    background: rgba(201, 168, 76, 0.08);
}

.link {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-size: .75rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--gold);
    transition: all .4s cubic-bezier(.25, .46, .45, .94);
}

.glass:hover .link {
    gap: .8rem;
}

.hero-scroll-indicator{
  position:absolute;
  bottom:30px;
  left:50%;
  transform:translateX(-50%);
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:10px;
  z-index:5;
}

.scroll-arrow{
  font-size:18px;
  color:var(--gold);
  animation:scrollBounce 2s infinite;
}

@keyframes scrollBounce{
  0%{
    transform:translateY(0);
    opacity:1;
  }
  50%{
    transform:translateY(10px);
    opacity:0.6;
  }
  100%{
    transform:translateY(0);
    opacity:1;
  }
}

.hero-visual-col {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-product-visual {
    position: relative;
    width: 320px;
    height: 480px;
}

.hero-product-page-visual {
    position: relative;
    height: 480px;
}

.hero-bottle-glow {
    position: absolute;
    inset: -40px;
    background: radial-gradient(ellipse, rgba(201, 168, 76, 0.25), transparent 70%);
    animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {

    0%,
    100% {
        opacity: 0.6;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.05);
    }
}

.hero-bottle-shape {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .hero-product-page-visual {
        position: relative;
        height: 340px;
    }

    .link {
        margin-bottom: 10px;
    }
}

/* ============================================================
       ABOUT SECTION
    ============================================================ */
#about {
    padding: 8rem 0;
    background: linear-gradient(180deg, var(--dark-bg) 0%, var(--dark-2) 50%, var(--dark-bg) 100%);
}

.about-body {
    font-size: 1rem;
    line-height: 1.9;
    color: var(--text-muted);
}

.about-body strong {
    color: var(--gold);
    font-weight: 500;
}

.about-stats {
    display: flex;
    gap: 2.5rem;
    margin-top: 2.5rem;
}

.stat-item {
    text-align: left;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.stat-label {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 0.3rem;
}

.about-visual {
    position: relative;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
}

.about-visual-inner {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--dark-3) 0%, var(--deep-blue) 50%, rgba(201, 168, 76, 0.1) 100%);
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.about-visual-circle {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    border: 1px solid rgba(201, 168, 76, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.about-visual-circle::before {
    content: '';
    position: absolute;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(201, 168, 76, 0.2), rgba(224, 123, 57, 0.1), transparent);
    animation: glowPulse 3s ease-in-out infinite;
}

.about-icon-center {
    font-size: 5rem;
    background: linear-gradient(135deg, var(--gold), var(--amber));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
}

.about-visual-badge {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    padding: 1rem 1.5rem;
}

.about-visual-badge .badge-text {
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.3rem;
}

.about-visual-badge .badge-value {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-primary);
}

/* ============================================================
       BREWS / PRODUCTS
    ============================================================ */

#brews {
    padding: 8rem 0;
    background: var(--dark-2);
}

.brews-intro {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 550px;
    margin: 0 0 2rem;
}

.brew-slider {
    padding: 1rem 0 3rem;
}

.brew-card {
    margin: 0 0.8rem;
    padding: 2rem;
    border-radius: 24px;
    transition: var(--transition);
    cursor: default;
    position: relative;
    overflow: hidden;
    display: flex;
    gap: 20px;
}

.brew-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 120%, var(--card-glow, rgba(201, 168, 76, 0.15)), transparent);
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
}

.brew-card:hover {
    transform: translateY(-10px);
    border-color: rgba(201, 168, 76, 0.25);
}

.brew-card:hover::before {
    opacity: 1;
}

.brew-icon-wrap {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
}

.brew-icon-wrap::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.brew-icon {
    font-size: 2.2rem;
}

.brew-flavor {
    font-size: 0.68rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 15px;
}

.brew-name {
    font-family: var(--font-display);
    font-size: 35px;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: var(--text-primary);
}

.brew-desc {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--text-muted);
}

.brew-divider {
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), transparent);
    margin: 1.2rem 0;
}

.product-image-card {
    width: 170px;
    border-radius: 15px;
}

@media (max-width: 768px) {
    .brew-card {
        margin: 0 10px;
        padding: 15px;
        border-radius: 20px;
        flex-direction: column;
    }

    .product-image-card {
        width: 100%;
    }

    .brew-name {
        font-size: 27px;
        margin-bottom: 8px;
    }

    .brew-desc {
        line-height: 1.3;
    }
}

/* .brew-slider-wrap {
  overflow: hidden;
} */

/* Slick arrows */

.slick-prev,
.slick-next {
    width: 40px;
    height: 40px;
    background: var(--glass-bg) !important;
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border) !important;
    border-radius: 50% !important;
    z-index: 10;
    transition: var(--transition);
}

.slick-prev:hover,
.slick-next:hover {
    background: rgba(201, 168, 76, 0.2) !important;
    border-color: var(--gold) !important;
}

.slick-prev {
    left: 0;
}

.slick-next {
    right: 0;
}

.slick-prev::before,
.slick-next::before {
    color: var(--gold);
    font-size: 20px;
    line-height: 2;
}

.slick-dots li button::before {
    color: var(--gold) !important;
}

.slick-dots li.slick-active button::before {
    color: var(--gold) !important;
}

.slick-next:before,
.slick-prev:before {
    font-family: 'FontAwesome';
}


/* ============================================================
       WHY SECTION
    ============================================================ */
#why {
    padding: 8rem 0;
    background: var(--dark-bg);
}

.why-card {
    padding: 2.5rem 2rem;
    border-radius: 20px;
    transition: var(--transition);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.why-card::after {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.3), transparent 50%);
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
    z-index: -1;
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.why-card:hover::after {
    opacity: 1;
}

.why-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.2), rgba(224, 123, 57, 0.1));
    border: 1px solid rgba(201, 168, 76, 0.2);
    color: var(--gold);
    transition: var(--transition);
}

.why-card:hover .why-icon {
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.3), rgba(224, 123, 57, 0.2));
    box-shadow: 0 0 20px rgba(201, 168, 76, 0.3);
}

.why-title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: var(--text-primary);
}

.why-body {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--text-muted);
}

/* ============================================================
       LIFESTYLE SECTION
    ============================================================ */
#lifestyle {
    position: relative;
    padding: 10rem 0;
    overflow: hidden;
}

.lifestyle-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--deep-blue) 0%, var(--dark-3) 40%, rgba(201, 168, 76, 0.08) 70%, var(--dark-2) 100%);
}

.lifestyle-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 1px 1px, rgba(201, 168, 76, 0.06) 1px, transparent 0);
    background-size: 40px 40px;
}

.lifestyle-content {
    position: relative;
    z-index: 2;
}

.lifestyle-glass {
    padding: 4rem;
    /* max-width: 700px; */
}

.lifestyle-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5.5vw, 4.5rem);
    font-weight: 700;
    line-height: 1.05;
    margin-bottom: 1.5rem;
}

.lifestyle-title .italic-em {
    font-family: var(--font-italic);
    font-style: italic;
    color: var(--teal);
}

.lifestyle-body {
    font-size: 1rem;
    line-height: 1.85;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.lifestyle-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.lifestyle-tag {
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border: 1px solid var(--glass-border);
    color: var(--text-muted);
    transition: var(--transition);
}

.lifestyle-tag:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.lifestyle-visual-orbs {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    width: 400px;
    height: 400px;
}

.lv-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    animation: floatOrb 6s ease-in-out infinite;
}

.lv-orb-1 {
    width: 250px;
    height: 250px;
    background: rgba(201, 168, 76, 0.3);
    top: 0;
    right: 0;
    animation-delay: 0s;
}

.lv-orb-2 {
    width: 180px;
    height: 180px;
    background: rgba(45, 212, 191, 0.2);
    bottom: 0;
    left: 0;
    animation-delay: 2s;
}

/* ============================================================
       CRAFT SECTION
    ============================================================ */
#craft {
    padding: 8rem 0;
    background: var(--dark-3);
}

.craft-timeline {
    position: relative;
    margin-top: 4rem;
}

.craft-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(to bottom, transparent, var(--gold), transparent);
    transform: translateX(-50%);
}

.craft-item {
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
    position: relative;
}

.craft-item:nth-child(odd) {
    flex-direction: row-reverse;
}

.craft-item:nth-child(odd) .craft-card {
    margin-left: 0;
    margin-right: 2rem;
    text-align: right;
}

.craft-item:nth-child(odd) .craft-card .craft-card-divider {
    margin-left: auto;
}

.craft-card {
    flex: 0 0 42%;
    padding: 2rem 2.5rem;
    border-radius: 16px;
    margin-left: 2rem;
    transition: var(--transition);
}

.craft-card:hover {
    transform: scale(1.02);
    border-color: rgba(201, 168, 76, 0.2);
}

.craft-number {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 700;
    color: rgba(201, 168, 76, 0.15);
    line-height: 1;
    margin-bottom: 0.3rem;
}

.craft-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.6rem;
}

.craft-body {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--text-muted);
}

.craft-card-divider {
    width: 32px;
    height: 2px;
    background: var(--gold);
    margin-bottom: 0.8rem;
}

.craft-dot {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 20px rgba(201, 168, 76, 0.6);
    border: 3px solid var(--dark-3);
    z-index: 1;
}

/* Mobile craft */
@media (max-width: 768px) {
    .craft-timeline::before {
        left: 20px;
    }

    .craft-item,
    .craft-item:nth-child(odd) {
        flex-direction: column;
        align-items: flex-start;
        padding-left: 50px;
    }

    .craft-card,
    .craft-item:nth-child(odd) .craft-card {
        margin: 0;
        text-align: left;
        width: 100%;
    }

    .craft-item:nth-child(odd) .craft-card .craft-card-divider {
        margin-left: 0;
    }

    .craft-dot {
        left: 20px;
    }

    #cdot,
    #cring {
        display: none;
    }
}

/* ============================================================
       CONTACT SECTION
    ============================================================ */
#contact {
    padding: 8rem 0;
    background: var(--dark-bg);
    position: relative;
    overflow: hidden;
}

.contact-bg-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(201, 168, 76, 0.08), transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.contact-card {
    padding: 4rem;
    border-radius: 28px;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), var(--amber), transparent);
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    margin-bottom: 1.8rem;
}

.contact-icon-wrap {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 168, 76, 0.12);
    border: 1px solid rgba(201, 168, 76, 0.2);
    color: var(--gold);
    flex-shrink: 0;
    font-size: 1rem;
}

.contact-info-label {
    font-size: 0.68rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.2rem;
}

.contact-info-value {
    font-size: 0.95rem;
    color: var(--text-primary);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2.5rem;
}

.social-btn {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--text-muted);
    font-size: 1rem;
    text-decoration: none;
    transition: var(--transition);
}

.social-btn:hover {
    background: rgba(201, 168, 76, 0.15);
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(201, 168, 76, 0.25);
}

/* Contact form side */
.contact-form-title {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.contact-form-sub {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.form-control-glass {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 0.9rem 1.2rem;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.9rem;
    transition: var(--transition);
    width: 100%;
    margin-bottom: 1rem;
    outline: none;
}

.form-control-glass::placeholder {
    color: var(--text-muted);
}

.form-control-glass:focus {
    border-color: rgba(201, 168, 76, 0.4);
    background: rgba(255, 255, 255, 0.07);
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
}

textarea.form-control-glass {
    resize: none;
    height: 120px;
}

/* ============================================================
       FOOTER
    ============================================================ */
footer {
    background: var(--dark-2);
    border-top: 1px solid var(--glass-border);
    padding: 3rem 0 2rem;
}

.footer-brand {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.06em;
    margin-bottom: 15px;
}

.footer-tagline {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.footer-nav {
    display: flex;
    flex-direction: column;
}

.footer-nav a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: var(--transition);
    margin-right: 1.8rem;
    margin-bottom: 8px;
}

.footer-nav a:hover {
    color: var(--gold);
}

.footer-copy {
    font-size: 0.78rem;
    color: rgba(160, 168, 184, 0.5);
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* ============================================================
       FLOATING BUBBLES
    ============================================================ */
.bubbles-container {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.bubble {
    position: absolute;
    bottom: -50px;
    border-radius: 50%;
    background: rgba(201, 168, 76, 0.06);
    border: 1px solid rgba(201, 168, 76, 0.1);
    animation: riseBubble linear infinite;
}

@keyframes riseBubble {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 0.5;
    }

    100% {
        transform: translateY(-110vh) scale(0.8);
        opacity: 0;
    }
}

/* ============================================================
       RESPONSIVE
    ============================================================ */
@media (max-width: 991px) {
    .hero-visual-col {
        display: none;
    }

    .hero-glass {
        max-width: 100%;
    }

    .lifestyle-visual-orbs {
        display: none;
    }

    .lifestyle-glass {
        max-width: 100%;
    }

    .contact-card {
        padding: 2.5rem 2rem;
    }
}

@media (max-width: 575px) {
    .hero-glass {
        padding: 2rem 1.5rem;
    }

    .about-stats {
        gap: 1.5rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .lifestyle-glass {
        padding: 2.5rem 1.5rem;
    }

    .craft-timeline::before {
        display: none;
    }
}

/* ============================================================
       UTILITIES
    ============================================================ */
.text-gold {
    color: var(--gold);
}

.text-teal {
    color: var(--teal);
}

.mb-section {
    margin-bottom: 4rem;
}

.divider-gold {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--amber));
    border-radius: 2px;
    margin-bottom: 1.5rem;
}

/* WOW.js custom delays */
.delay-1 {
    animation-delay: 0.1s !important;
}

.delay-2 {
    animation-delay: 0.2s !important;
}

.delay-3 {
    animation-delay: 0.3s !important;
}

.delay-4 {
    animation-delay: 0.4s !important;
}

/* Slick slider overflow fix */
.slick-list {
    overflow: visible;
}

.brew-slider-wrap {
    overflow: hidden;
    padding: 0 1rem;
}



/* ==========================================================
PRODUCT PAGES
========================================================== */


#product-hero {
    padding: 10rem 0 6rem;
    background: var(--dark-bg);
}

.product-hero-img {
    width: 310px;
    /* filter: drop-shadow(0 25px 40px rgba(201, 168, 76, 0.4)); */
    border-radius: 30px;
}

#flavor-notes {
    padding: 6rem 0;
    background: var(--dark-2);
}

.flavor-card {
    padding: 2.5rem;
    border-radius: 20px;
}

.flavor-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.ingredients-list {
    display: flex;
    flex-wrap: wrap;
    gap: .7rem;
    margin-top: 1rem;
}

.ingredients-list span {
    padding: .4rem 1rem;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    color: var(--gold);
    font-size: .75rem;
}

.ingredient-note {
    margin-top: 2rem;
    padding: 1rem;
    font-size: .9rem;
}

.ingredient-note i {
    margin-right: 5px;
    padding: 8px;
    border: 1px solid var(--accent);
    border-radius: 50%;
    color: var(--accent);
}

.nutrition-card {
    padding: 2rem;
}

.nutrition-card h3 {
    font-family: var(--font-display);
    font-weight: 700;
    border: 1px solid var(--glass-border);
    padding: 5px;
    border-radius: 10px;
    text-align: center;
    background: linear-gradient(120deg, var(--gold), var(--amber));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nutrition-card ul {
    list-style: none;
    padding: 0;
}

.nutrition-card li {
    display: flex;
    justify-content: space-between;
    padding: .8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
}

#pairings {
    padding: 6rem 0;
    background: var(--dark-3);
}

.pair-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}


#ingredients {
    padding: 6rem 0;
    background: var(--dark-bg);
}



/* Section Responsive  */

@media (max-width: 768px) {

    .logo img {
        width: 100px;
    }

    #why,
    #about,
    #lifestyle,
    #craft,
    #contact,
    #brews {
        padding: 2rem 0;
    }

    .text-center-mobile {
        text-align: center !important;
    }

    .justify-center-mobile {
        justify-content: center !important;
    }

}