/* =============================================================
   Tiedemand Vin & Gin Bar - Premium Awwwards Style Framework
   ============================================================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Montserrat:wght@200;300;400;500;600&display=swap');

:root {
  /* Warm Obsidian Neutral Palette ( basil / dark volcanic slate ) */
  --bg-obsidian-deep: #080707;      /* Base deep obsidian */
  --bg-obsidian-card: #0F0E0E;      /* Solid card rich charcoal */
  --bg-obsidian-section: #0B0A0A;   /* Section backgrounds */
  --bg-obsidian-border: rgba(197, 168, 128, 0.12); /* Champagne border */
  --bg-obsidian-divider: rgba(255, 255, 255, 0.04);
  
  /* Luxury Liquid Metallic Accents */
  --accent-gold-pale: #D4C3A3;      /* Aged Pale Champagne Gold */
  --accent-gold-pale-rgb: 212, 195, 163;
  --accent-copper-still: #C58C43;   /* Aged Distill Copper Amber */
  --accent-juniper-sage: #4E6B5D;   /* Understated Botanical Sage */
  
  /* Text Scales */
  --text-antique: #F5F3EF;          /* Soft Ivory (non-glare) */
  --text-sand-muted: #B8B3AE;       /* Warm dust gray */
  --text-bronze-dim: #7A746E;       /* Deep soil bronze */
  
  /* Typography scales */
  --font-serif: 'Cormorant Garamond', serif;
  --font-sans: 'Montserrat', sans-serif;
  
  /* Cinematic Motion curve (Rapid launch, heavy weighted crawl) */
  --ease-premium: cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 1.2s var(--ease-premium);
}

/* -------------------------------------------------------------
   1. The Tactile Film Grain & Noise Overlay
   ------------------------------------------------------------- */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999;
    pointer-events: none;
    opacity: 0.022; /* Incredibly subtle velvet grain */
    mix-blend-mode: overlay;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 250 250' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* -------------------------------------------------------------
   2. Reset & Core Typography Scales
   ------------------------------------------------------------- */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    background-color: var(--bg-obsidian-deep);
    color: var(--text-antique);
    font-family: var(--font-sans);
    overflow-x: hidden;
}

body {
    position: relative;
    min-height: 100vh;
    overflow-x: hidden;
    cursor: none; /* Hide cursor for magnetic custom ring */
}

/* Custom Editorial Scrollbar */
::-webkit-scrollbar {
    width: 5px;
}
::-webkit-scrollbar-track {
    background: var(--bg-obsidian-deep);
}
::-webkit-scrollbar-thumb {
    background: rgba(var(--accent-gold-pale-rgb), 0.2);
    border-radius: 2px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent-gold-pale);
}

/* -------------------------------------------------------------
   3. Custom Magnetic trailing Ring Cursor
   ------------------------------------------------------------- */
.custom-cursor {
    width: 35px;
    height: 35px;
    border: 1px solid rgba(var(--accent-gold-pale-rgb), 0.35);
    border-radius: 50%;
    position: fixed;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 10000;
    transition: width 0.4s var(--ease-premium), height 0.4s var(--ease-premium), background-color 0.4s, border-color 0.4s;
    mix-blend-mode: difference;
}

.custom-cursor-dot {
    width: 5px;
    height: 5px;
    background-color: var(--accent-gold-pale);
    border-radius: 50%;
    position: fixed;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 10000;
}

/* Active Hover cursor state */
.custom-cursor.hover {
    width: 60px;
    height: 60px;
    background-color: rgba(var(--accent-gold-pale-rgb), 0.08);
    border-color: rgba(var(--accent-gold-pale-rgb), 0.7);
}

/* -------------------------------------------------------------
   4. Liquid Ambient Glow Backdrops
   ------------------------------------------------------------- */
.glow-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    z-index: -2;
    pointer-events: none;
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.15;
    mix-blend-mode: screen;
}

.glow-orb-sage {
    width: 55vw;
    height: 55vw;
    background: radial-gradient(circle, var(--accent-juniper-sage) 0%, rgba(0,0,0,0) 70%);
    top: -15%;
    left: -10%;
    animation: driftGlow-1 25s ease-in-out infinite alternate;
}

.glow-orb-copper {
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, var(--accent-copper-still) 0%, rgba(0,0,0,0) 70%);
    bottom: -20%;
    right: -10%;
    animation: driftGlow-2 30s ease-in-out infinite alternate-reverse;
}

.glow-orb-amber {
    width: 45vw;
    height: 45vw;
    background: radial-gradient(circle, var(--accent-gold-pale) 0%, rgba(0,0,0,0) 70%);
    top: 35%;
    right: 10%;
    animation: driftGlow-3 28s ease-in-out infinite alternate;
}

@keyframes driftGlow-1 {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(6%, 10%) scale(1.08); }
    100% { transform: translate(-4%, -5%) scale(0.95); }
}

@keyframes driftGlow-2 {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-8%, -10%) scale(0.92); }
    100% { transform: translate(5%, 6%) scale(1.1); }
}

@keyframes driftGlow-3 {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(10%, -6%) scale(1.15); }
    100% { transform: translate(-6%, 4%) scale(0.92); }
}

/* -------------------------------------------------------------
   5. Thin Editorial Wire Grid Background Lines
   ------------------------------------------------------------- */
.editorial-bg-grid {
    position: absolute;
    inset: 0;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    pointer-events: none;
    z-index: 0;
}

.editorial-grid-line {
    border-right: 1px solid rgba(255, 255, 255, 0.015);
    height: 100%;
}

.editorial-grid-line:first-child {
    border-left: 1px solid rgba(255, 255, 255, 0.015);
}

/* -------------------------------------------------------------
   6. Editorial Headers & Typography Hierarchy
   ------------------------------------------------------------- */
.eyebrow-text {
    font-family: var(--font-sans);
    font-size: 0.65rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--accent-gold-pale);
    display: inline-flex;
    align-items: center;
    gap: 1rem;
}

.eyebrow-line {
    width: 30px;
    height: 1px;
    background-color: rgba(var(--accent-gold-pale-rgb), 0.4);
}

.hero-title {
    font-family: var(--font-serif);
    font-weight: 300;
    font-size: clamp(2.4rem, 5.5vw, 5.2rem);
    line-height: 1.02;
    letter-spacing: -0.025em;
    color: var(--text-antique);
}

.hero-title em {
    font-family: var(--font-serif);
    font-style: normal;
    font-weight: 300;
    color: var(--accent-gold-pale);
    letter-spacing: -0.01em;
}

.section-title {
    font-family: var(--font-serif);
    font-weight: 300;
    font-size: clamp(2rem, 3.8vw, 3.4rem);
    line-height: 1.08;
    color: var(--text-antique);
}

.section-title em {
    font-style: normal;
    color: var(--accent-gold-pale);
}

/* Absolute vertical rotated margin-label (Awwwards staple) */
.editorial-margin-label {
    position: absolute;
    transform: rotate(-90deg) translateY(-50%);
    transform-origin: left center;
    font-family: var(--font-sans);
    font-size: 0.58rem;
    font-weight: 500;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--text-bronze-dim);
    pointer-events: none;
    z-index: 1;
}

/* -------------------------------------------------------------
   7. Glassmorphic Navigation
   ------------------------------------------------------------- */
.luxe-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(8, 7, 7, 0.35);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--bg-obsidian-divider);
    transition: background-color var(--transition-smooth), padding var(--transition-smooth);
    padding: 2rem 0;
}

.luxe-nav.scrolled {
    background-color: rgba(8, 7, 7, 0.88);
    padding: 1.1rem 0;
    border-bottom: 1px solid rgba(var(--accent-gold-pale-rgb), 0.08);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-weight: 500;
    letter-spacing: 0.28em;
    color: var(--text-antique);
    text-decoration: none;
    transition: color 0.3s;
}

.nav-logo:hover {
    color: var(--accent-gold-pale);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 3.5rem;
}

.nav-item {
    font-family: var(--font-sans);
    font-size: 0.68rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.24em;
    color: var(--text-sand-muted);
    text-decoration: none;
    transition: color 0.3s var(--ease-premium), transform 0.3s var(--ease-premium);
}

.nav-item:hover {
    color: var(--accent-gold-pale);
}

/* Hamburger button — hidden on desktop */
.nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.4rem;
    z-index: 1001;
}

.nav-hamburger span {
    display: block;
    width: 22px;
    height: 1px;
    background: var(--accent-gold-pale);
    transition: transform 0.35s var(--ease-premium), opacity 0.35s var(--ease-premium);
}

/* Animate hamburger → X when open */
.nav-hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* -------------------------------------------------------------
   8. Magnetic Conic-Gradient Border Buttons
   ------------------------------------------------------------- */
.premium-border-box {
    position: relative;
    background: var(--bg-obsidian-card);
    border-radius: 30px;
    padding: 1px; /* border thickness */
    overflow: hidden;
    display: inline-block;
    z-index: 1;
    transition: transform 0.2s linear; /* Fast track for magnetic JS mouse follower */
}

.premium-border-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(
        from 0deg,
        transparent 0%,
        transparent 45%,
        rgba(var(--accent-gold-pale-rgb), 0.7) 50%,
        transparent 55%,
        transparent 100%
    );
    animation: rotateConic 8s linear infinite;
    z-index: -2;
}

.premium-border-box::after {
    content: '';
    position: absolute;
    inset: 1px;
    background: var(--bg-obsidian-card);
    border-radius: 29px;
    z-index: -1;
    transition: background-color 0.4s;
}

.premium-border-box:hover::after {
    background-color: #151313;
}

@keyframes rotateConic {
    100% { transform: rotate(360deg); }
}

.btn-text {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.65rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: #fff;
    padding: 0.8rem 1.8rem;
    cursor: pointer;
}

/* -------------------------------------------------------------
   9. Hero Section (Asymmetrical layout with heavy margins)
   ------------------------------------------------------------- */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 12rem 3rem 6rem 3rem;
    overflow: hidden;
}

/* Full bleed video */
.hero-video-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
    pointer-events: none;
}

/* Overlay: heavy on left (text area), light on right (bottle) */
.hero-video-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(
        to right,
        rgba(8, 7, 7, 0.82) 0%,
        rgba(8, 7, 7, 0.60) 45%,
        rgba(8, 7, 7, 0.15) 70%,
        rgba(8, 7, 7, 0.0) 100%
    );
}

.hero-layout-grid {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 5; /* above video + overlay */
}

.hero-left-column {
    grid-column: 1 / 8;
    display: flex;
    flex-direction: column;
}

.hero-right-column {
    grid-column: 8 / 13;
    display: flex;
    justify-content: flex-end;
    position: relative;
}

.hero-subtitle {
    font-family: var(--font-sans);
    font-weight: 300;
    font-size: clamp(0.92rem, 1.15vw, 1.1rem);
    line-height: 1.85;
    color: var(--text-sand-muted);
    margin: 2.2rem 0 3.5rem 0;
    max-width: 580px;
}

.hero-actions {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.btn-primary {
    display: inline-block;
    background: var(--accent-gold-pale);
    color: var(--bg-obsidian-deep);
    text-decoration: none;
    padding: 1.05rem 2.4rem;
    border-radius: 4px;
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    transition: transform 0.3s var(--ease-premium), background-color 0.3s;
    box-shadow: 0 12px 32px rgba(var(--accent-gold-pale-rgb), 0.12);
}

.btn-primary:hover {
    background-color: #e5d7bc;
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--text-antique);
    text-decoration: none;
    padding: 1.05rem 2.4rem;
    border-radius: 4px;
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    transition: transform 0.3s var(--ease-premium), border-color 0.3s, background-color 0.3s;
}

.btn-secondary:hover {
    border-color: var(--accent-gold-pale);
    background-color: rgba(255, 255, 255, 0.02);
    transform: translateY(-2px);
}

.hero-abstract-frame {
    width: 100%;
    max-width: 380px;
    background: var(--bg-obsidian-card);
    border: 1px solid var(--bg-obsidian-border);
    border-radius: 3rem;
    padding: 1rem;
    box-shadow: 0 24px 64px rgba(0,0,0,0.6);
}

.hero-abstract-canvas {
    aspect-ratio: 3/4;
    width: 100%;
    background-color: #0b0a0a;
    border-radius: 2.2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-sculpture-svg {
    width: 75%;
    height: 75%;
    z-index: 1;
}

/* -------------------------------------------------------------
   10. Section Layouts & Single-Axis Hairline Dividers
   ------------------------------------------------------------- */
section {
    padding: 11rem 3rem;
    position: relative;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 5;
}

.editorial-divider-line {
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, var(--bg-obsidian-border) 60%, rgba(255, 255, 255, 0) 100%);
    margin: 1.5rem 0 6rem 0;
}

.section-editorial-header {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3.5rem;
    margin-bottom: 7rem;
    align-items: flex-end;
}

.desc-box {
    max-width: 540px;
}

/* -------------------------------------------------------------
   11. The Botanisk Lab Card Matrix (Tactile 3D Cards)
   ------------------------------------------------------------- */
.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3.5rem;
}

.luxury-card {
    position: relative;
    overflow: hidden;
    background: var(--bg-obsidian-card);
    backdrop-filter: blur(20px) saturate(140%);
    -webkit-backdrop-filter: blur(20px) saturate(140%);
    border: 1px solid var(--bg-obsidian-border);
    border-radius: 16px;
    padding: 4.5rem 3rem;
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 0.03),
        0 16px 48px rgba(0, 0, 0, 0.75);
    transition: border-color 0.4s var(--ease-premium), transform 0.4s var(--ease-premium), box-shadow 0.4s var(--ease-premium);
    transform-style: preserve-3d;
}

.luxury-card:hover {
    border-color: rgba(var(--accent-gold-pale-rgb), 0.35);
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 0.05),
        0 24px 64px rgba(0, 0, 0, 0.9),
        0 0 25px rgba(var(--accent-gold-pale-rgb), 0.05);
}

.luxury-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.03) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-20deg);
    transition: left 0.9s var(--ease-premium);
    pointer-events: none;
}

.luxury-card:hover::after {
    left: 150%;
}

.card-botanical-graphic {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 150px;
    height: 150px;
    pointer-events: none;
    z-index: 0;
    opacity: 0.55;
}

.botanical-svg {
    width: 100%;
    height: 100%;
}

.slowSpin {
    animation: spinClockwise 50s linear infinite;
    transform-origin: center center;
}

@keyframes spinClockwise {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.botanical-wrapper {
    animation: organicFloating 8s ease-in-out infinite alternate;
}

@keyframes organicFloating {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-8px) rotate(1.5deg); }
    100% { transform: translateY(4px) rotate(-1.5deg); }
}

.card-category {
    font-family: var(--font-sans);
    font-size: 0.62rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.28em;
    color: var(--accent-gold-pale);
    margin-bottom: 1.5rem;
    display: block;
    position: relative;
    z-index: 1;
}

.card-title {
    font-family: var(--font-serif);
    font-weight: 300;
    font-size: 2.05rem;
    color: var(--text-antique);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.card-title em {
    font-style: normal;
    color: var(--accent-gold-pale);
}

.card-text {
    font-family: var(--font-sans);
    font-weight: 300;
    font-size: 0.88rem;
    line-height: 1.75;
    color: var(--text-sand-muted);
    margin-bottom: 3.5rem;
    position: relative;
    z-index: 1;
}

.card-footer {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    border-top: 1px solid var(--bg-obsidian-divider);
    padding-top: 1.5rem;
    position: relative;
    z-index: 1;
}

.card-price {
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: 1.35rem;
    color: var(--accent-gold-pale);
}

.card-serve {
    font-family: var(--font-sans);
    font-size: 0.65rem;
    font-weight: 400;
    color: var(--text-bronze-dim);
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

/* -------------------------------------------------------------
   12. Wine Featured Showcase (Kjelleren Split Layout)
   ------------------------------------------------------------- */
.wine-showcase-container {
    max-width: 1200px;
    margin: 0 auto;
}

.wine-featured-item {
    display: flex;
    background: var(--bg-obsidian-card);
    border: 1px solid var(--bg-obsidian-border);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.7);
}

.wine-info-side {
    flex: 1.25;
    padding: 6rem 5.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.gold-label {
    font-family: var(--font-sans);
    font-size: 0.65rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--accent-gold-pale);
    margin-bottom: 1.5rem;
    display: block;
}

.wine-featured-title {
    font-family: var(--font-serif);
    font-weight: 300;
    font-size: 2.85rem;
    line-height: 1.08;
    color: #fff;
    margin-bottom: 2rem;
}

.wine-featured-title em {
    font-style: normal;
    color: var(--accent-gold-pale);
}

.wine-featured-desc {
    font-family: var(--font-sans);
    font-weight: 300;
    font-size: 0.95rem;
    line-height: 1.85;
    color: var(--text-sand-muted);
    margin-bottom: 3.5rem;
}

.wine-meta-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    border-top: 1px solid var(--bg-obsidian-divider);
    padding-top: 2rem;
}

.meta-box {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.meta-label {
    font-family: var(--font-sans);
    font-size: 0.6rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-bronze-dim);
}

.meta-val {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--text-antique);
}

.wine-visual-side {
    flex: 0.75;
    background: #0b0a0a;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    border-left: 1px solid var(--bg-obsidian-border);
    min-height: 480px;
}

.wine-bottle-glow {
    position: absolute;
    width: 160px;
    height: 320px;
    background: radial-gradient(circle, rgba(var(--accent-gold-pale-rgb), 0.12) 0%, rgba(0,0,0,0) 70%);
    filter: blur(30px);
    z-index: 0;
}

.wine-abstract-svg {
    width: 65%;
    height: 80%;
    z-index: 1;
}

/* -------------------------------------------------------------
   13. Story & Philosophy (Deliberate Layout Tension)
   ------------------------------------------------------------- */
.story-flex-layout {
    display: flex;
    align-items: center;
    gap: 7rem;
}

.story-visual-side {
    flex: 0.95;
    background: var(--bg-obsidian-card);
    border: 1px solid var(--bg-obsidian-border);
    border-radius: 20px;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.story-craft-svg {
    width: 65%;
    height: 65%;
}

.story-text-side {
    flex: 1.25;
}

.body-copy {
    font-family: var(--font-sans);
    font-weight: 300;
    font-size: 0.95rem;
    line-height: 1.85;
    color: var(--text-sand-muted);
    margin-bottom: 2rem;
}

/* -------------------------------------------------------------
   14. Premium Minimal Booking Container
   ------------------------------------------------------------- */
.booking-section {
    background-color: var(--bg-obsidian-deep);
}

.booking-box-container {
    max-width: 780px;
    margin: 0 auto;
}

/* Redefining border box corners for form */
.booking-box-container.premium-border-box {
    border-radius: 16px;
    display: block;
}

.booking-box-container.premium-border-box::before {
    animation-duration: 9s;
}

.booking-box-container.premium-border-box::after {
    border-radius: 15px;
    background: var(--bg-obsidian-card);
}

.booking-card {
    padding: 5.5rem 4.5rem;
    text-align: center;
    background: transparent;
    position: relative;
    z-index: 2;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 3.5rem;
    margin-top: 3.5rem;
}

.form-row {
    display: flex;
    gap: 3rem;
}

.input-group {
    flex: 1;
    position: relative;
}

.input-group input {
    width: 100%;
    padding: 0.9rem 0.2rem;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    color: #fff;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 300;
    outline: none;
    transition: border-color 0.4s var(--ease-premium);
}

/* Floating label details */
.input-group label {
    position: absolute;
    left: 0.2rem;
    top: 0.9rem;
    color: var(--text-bronze-dim);
    font-family: var(--font-sans);
    font-size: 0.82rem;
    pointer-events: none;
    transition: transform 0.4s var(--ease-premium), color 0.4s var(--ease-premium), font-size 0.4s var(--ease-premium);
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

/* Float active rules */
.input-group input:focus ~ label,
.input-group input:not(:placeholder-shown) ~ label {
    transform: translateY(-2.2rem);
    font-size: 0.62rem;
    color: var(--accent-gold-pale);
}

.input-border {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 1px;
    background-color: var(--accent-gold-pale);
    transition: width 0.4s var(--ease-premium), left 0.4s var(--ease-premium);
}

.input-group input:focus ~ .input-border {
    width: 100%;
    left: 0;
}

.input-group input:focus {
    border-bottom-color: transparent;
}

.input-group input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(0.8);
    opacity: 0.35;
    cursor: pointer;
}

.btn-submit {
    background: none;
    border: 1px solid var(--accent-gold-pale);
    color: #fff;
    padding: 1.15rem 3.2rem;
    border-radius: 4px;
    cursor: pointer;
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    transition: transform 0.3s var(--ease-premium), background-color 0.3s, color 0.3s;
    box-shadow: 0 8px 24px rgba(var(--accent-gold-pale-rgb), 0.05);
}

.btn-submit:hover {
    background-color: var(--accent-gold-pale);
    color: var(--bg-obsidian-deep);
    transform: translateY(-2px);
}

/* -------------------------------------------------------------
   15. Footer
   ------------------------------------------------------------- */
.luxe-footer {
    border-top: 1px solid var(--bg-obsidian-border);
    padding: 7rem 3rem 4rem 3rem;
    background-color: #070606;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 5rem;
}

.footer-logo {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    letter-spacing: 0.22em;
    color: #fff;
    margin-bottom: 0.8rem;
}

.footer-tagline {
    font-family: var(--font-sans);
    font-size: 0.72rem;
    color: var(--text-bronze-dim);
    letter-spacing: 0.05em;
}

.footer-info {
    display: flex;
    gap: 6rem;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.footer-header {
    font-family: var(--font-sans);
    font-size: 0.62rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--accent-gold-pale);
}

.footer-text {
    font-family: var(--font-sans);
    font-size: 0.78rem;
    font-weight: 300;
    line-height: 1.6;
    color: var(--text-sand-muted);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    border-top: 1px solid rgba(255, 255, 255, 0.025);
    padding-top: 3rem;
    text-align: center;
}

.footer-bottom p {
    font-family: var(--font-sans);
    font-size: 0.62rem;
    color: var(--text-bronze-dim);
    letter-spacing: 0.08em;
}

/* -------------------------------------------------------------
   16. Viewport Entrance Scroll-Linked Reveals (Lerp entries)
   ------------------------------------------------------------- */
.scroll-fade-reveal {
    opacity: 0;
    transform: translateY(50px) scale(0.96);
    transition: opacity 1.4s var(--ease-premium), transform 1.4s var(--ease-premium);
}

.scroll-fade-reveal.active {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.luxe-reveal-box {
    clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0% 100%);
    transform: translateY(60px);
    transition: clip-path 1.8s var(--ease-premium), transform 1.8s var(--ease-premium);
}

.luxe-reveal-box.active {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    transform: translateY(0);
}

.text-mask-content {
    display: block;
    transform: translateY(100%);
    opacity: 0;
    transition: transform 1.4s var(--ease-premium), opacity 1.4s var(--ease-premium);
}

.text-mask-wrapper.active .text-mask-content {
    transform: translateY(0);
    opacity: 1;
}

/* -------------------------------------------------------------
   17. Viewport Responsive Scales (Responsive Grid Folding)
   ------------------------------------------------------------- */
@media (max-width: 991px) {
    section {
        padding: 8rem 2rem;
    }
    
    .hero-layout-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
        text-align: center;
    }
    
    .hero-left-column {
        grid-column: 1 / -1;
        align-items: center;
    }
    
    .hero-right-column {
        grid-column: 1 / -1;
        justify-content: center;
    }
    
    .section-editorial-header {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .desc-box {
        margin: 0 auto;
    }
    
    .story-flex-layout {
        flex-direction: column;
        gap: 4rem;
    }
    
    .wine-featured-item {
        flex-direction: column;
    }
    
    .wine-info-side {
        padding: 4.5rem 3rem;
    }
    
    .wine-visual-side {
        border-left: none;
        border-top: 1px solid var(--bg-obsidian-border);
        padding: 4rem 0;
    }
}

@media (max-width: 767px) {

    /* ── Cursor — hide on mobile, keep on desktop ── */
    .custom-cursor,
    .custom-cursor-dot {
        display: none;
    }

    body {
        cursor: auto;
    }

    /* ── Nav: hamburger replaces the link row ── */
    .nav-hamburger {
        display: flex;
    }

    /* Nav links hidden by default, slide down when .open is toggled by JS */
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: center;
        gap: 0;
        padding: 1.5rem 0 2rem;
        background: rgba(8, 7, 7, 0.97);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-bottom: 1px solid var(--bg-obsidian-border);
        z-index: 999;
    }

    .nav-links.open {
        display: flex;
    }

    .nav-item {
        padding: 0.9rem 2.5rem;
        font-size: 0.7rem;
        letter-spacing: 0.22em;
        width: 100%;
        text-align: center;
    }

    /* The "Reserver Bord" premium border box needs full width on mobile */
    .nav-links .premium-border-box {
        margin-top: 0.5rem;
    }

    /* ── Hero ── */
    /* Column flex: stacks items vertically and centers them.
       scroll-indicator pulled out of flow so it doesn't affect centering. */
    .hero-section {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: stretch;
        padding: 8rem 1.5rem 4rem;
    }

    .hero-scroll-indicator {
        position: absolute;
        bottom: 2rem;
        left: 50%;
        transform: translateX(-50%);
    }

    /* Pull the bottle toward center of the viewport */
    .hero-video-bg {
        object-position: 88% center;
    }

    /* Uniform semi-dark overlay so bottle shows through and text stays readable */
    .hero-video-overlay {
        background: rgba(8, 7, 7, 0.55);
    }

    /* Force all hero text to center */
    .hero-layout-grid {
        text-align: center;
    }

    /* Switch to block — full width guaranteed, text-align: center just works */
    .hero-left-column {
        display: block;
        text-align: center;
        width: 100%;
    }

    .hero-title {
        font-size: clamp(1.8rem, 7vw, 2.8rem);
        text-align: center;
        margin-bottom: 1.5rem;
    }

    .hero-subtitle {
        text-align: center;
        max-width: 100%;
        margin: 0 auto 2.5rem;
    }

    .eyebrow-container {
        margin-bottom: 1.2rem;
        text-align: center;
    }

    .hero-actions {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    /* Hide rotated side labels — they overlap on small screens */
    .editorial-margin-label { display: none; }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }

    /* ── Wine section ── */
    .editorial-divider-line {
        margin: 1rem 0 2.5rem 0;
    }

    /* Search bar full width */
    .wine-search-box {
        max-width: 100%;
    }

    /* Tabs: 2 per row (all 4 visible, zero scrolling) */
    .wine-tabs {
        flex-wrap: wrap;
        border-bottom: none;
    }

    .wine-tab {
        flex: 0 0 50%;
        text-align: center;
        padding: 0.85rem 0.5rem;
        font-size: 0.58rem;
        letter-spacing: 0.12em;
        margin-bottom: 0;
        border: 1px solid rgba(197, 168, 128, 0.07);
        border-bottom: 2px solid transparent;
    }

    .wine-tab.active {
        border-bottom-color: var(--accent-gold-pale);
    }

    /* Wine chart mobile styles are at the END of this file
       (after the base wine CSS) so they actually override correctly. */

    /* ── Booking ── */
    .form-row { flex-direction: column; gap: 3.5rem; }
    .booking-card { padding: 3.5rem 1.5rem; }

    /* ── Footer ── */
    .footer-container { flex-direction: column; gap: 4rem; }
    .footer-info      { gap: 3rem; flex-wrap: wrap; }
}

/* ─────────────────────────────────────────────
   WINE MENU SECTION
───────────────────────────────────────────── */
/* Search bar */
.wine-search-wrapper {
    margin-bottom: 2.5rem;
}

.wine-search-box {
    position: relative;
    display: flex;
    align-items: center;
    max-width: 520px;
    border: 1px solid rgba(var(--accent-gold-pale-rgb), 0.2);
    border-radius: 4px;
    background: rgba(255,255,255,0.02);
    transition: border-color 0.3s;
}

.wine-search-box:focus-within {
    border-color: rgba(var(--accent-gold-pale-rgb), 0.55);
}

.wine-search-icon {
    width: 15px;
    height: 15px;
    margin-left: 1.1rem;
    color: var(--text-bronze-dim);
    flex-shrink: 0;
}

.wine-search-input {
    flex: 1;
    background: none;
    border: none;
    outline: none;
    padding: 0.95rem 1rem;
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 300;
    color: var(--text-antique);
    letter-spacing: 0.05em;
}

.wine-search-input::placeholder {
    color: var(--text-bronze-dim);
}

.wine-search-clear {
    background: none;
    border: none;
    color: var(--text-bronze-dim);
    padding: 0.95rem 1.1rem;
    cursor: pointer;
    font-size: 0.7rem;
    opacity: 0;
    transition: opacity 0.2s, color 0.2s;
}

.wine-search-clear:hover { color: var(--accent-gold-pale); }

/* Tabs */
.wine-tabs {
    display: flex;
    gap: 0;
    margin-bottom: 0;
    border-bottom: 1px solid var(--bg-obsidian-border);
}

.wine-tab {
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    color: var(--text-bronze-dim);
    font-family: var(--font-sans);
    font-size: 0.65rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    padding: 1.2rem 2rem;
    cursor: pointer;
    transition: color 0.3s, border-color 0.3s;
    margin-bottom: -1px;
}

.wine-tab:hover {
    color: var(--accent-gold-pale);
}

.wine-tab.active {
    color: var(--accent-gold-pale);
    border-bottom-color: var(--accent-gold-pale);
}

.wine-list-header {
    display: grid;
    grid-template-columns: 3fr 1fr 1.5fr 0.7fr 0.8fr 0.6fr;
    gap: 1rem;
    padding: 1.2rem 1.5rem;
    border-bottom: 1px solid var(--bg-obsidian-border);
    margin-top: 0;
}

.wine-list-header span {
    font-family: var(--font-sans);
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--text-sand-muted);
}

.wine-list-body {
    margin-top: 0;
}

/* Country group header */
.wine-country-header {
    padding: 1.4rem 1.5rem 0.6rem;
    margin-top: 1rem;
}

.wine-country-header:first-child {
    margin-top: 0;
}

.wine-country-header span {
    font-family: var(--font-sans);
    font-size: 0.58rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.28em;
    color: var(--accent-copper-still);
}

.wine-category-header span {
    color: var(--accent-gold-pale);
}

.wine-item {
    display: grid;
    grid-template-columns: 3fr 1fr 1.5fr 0.7fr 0.9fr 0.7fr;
    gap: 1rem;
    padding: 1.4rem 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.03);
    transition: background 0.2s;
    align-items: center;
}

/* Alternating row color for readability */
.wine-item-alt {
    background: rgba(255,255,255,0.018);
}

.wine-item:hover {
    background: rgba(var(--accent-gold-pale-rgb), 0.05) !important;
}

.wi-name {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 400;
    color: #F8F6F2;
    line-height: 1.3;
}

.wi-land {
    font-family: var(--font-sans);
    font-size: 0.82rem;
    font-weight: 400;
    color: #D0CBC4;
}

.wi-region {
    font-family: var(--font-sans);
    font-size: 0.82rem;
    font-weight: 300;
    color: #C0BAB3;
}

.wi-year {
    font-family: var(--font-sans);
    font-size: 0.82rem;
    font-weight: 400;
    color: #B0AAA3;
    text-align: center;
}

.wi-bottle {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 400;
    color: var(--accent-gold-pale);
    text-align: right;
}

.wi-glass {
    font-family: var(--font-sans);
    font-size: 0.82rem;
    font-weight: 400;
    color: #9E9890;
    text-align: right;
}

.wine-no-results {
    padding: 4rem 1.5rem;
    text-align: center;
    font-family: var(--font-sans);
    font-size: 0.8rem;
    color: var(--text-bronze-dim);
    letter-spacing: 0.1em;
}

/* Mobile card element — hidden on desktop */
.wi-mobile { display: none; }

/* ─────────────────────────────────────────────
   ABOUT SECTION
───────────────────────────────────────────── */
.about-section {
    padding: 11rem 3rem;
    position: relative;
}

.about-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-placeholder-text {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    font-weight: 300;
    letter-spacing: 0.3em;
    color: rgba(var(--accent-gold-pale-rgb), 0.25);
}

/* =============================================================
   MOBILE WINE CHART — placed AFTER all base wine CSS so it wins
   ============================================================= */
@media (max-width: 767px) {

    /* Tabs: 2×2 grid, all 4 visible, no scrolling */
    .wine-tabs {
        flex-wrap: wrap;
        border-bottom: none;
    }

    .wine-tab {
        flex: 0 0 50%;
        text-align: center;
        padding: 0.85rem 0.5rem;
        font-size: 0.6rem;
        letter-spacing: 0.12em;
        margin-bottom: 0;
        border: 1px solid rgba(197, 168, 128, 0.08);
        border-bottom: 2px solid transparent;
    }

    .wine-tab.active {
        border-bottom-color: var(--accent-gold-pale);
    }

    /* Hide the desktop table header */
    .wine-list-header { display: none; }

    /* Each wine row switches to block so the mobile card takes over */
    .wine-item {
        display: block;
        padding: 0.9rem 0.75rem;
    }

    /* Hide all desktop column spans */
    .wi-name,
    .wi-land,
    .wi-region,
    .wi-year,
    .wi-bottle,
    .wi-glass { display: none; }

    /* Show the mobile card */
    .wi-mobile { display: block; }

    /* Row 1: wine name (left) + bottle price (right) */
    .wi-mobile-top {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        gap: 1rem;
    }

    .wi-mobile-name {
        font-family: var(--font-serif);
        font-size: 1rem;
        font-weight: 400;
        color: #F8F6F2;
        line-height: 1.35;
        flex: 1;
        min-width: 0;
    }

    .wi-mobile-price {
        font-family: var(--font-serif);
        font-size: 1rem;
        font-weight: 400;
        color: var(--accent-gold-pale);
        white-space: nowrap;
        flex-shrink: 0;
    }

    /* Row 2: country · region · year (left) + glass price (right) */
    .wi-mobile-bottom {
        display: flex;
        justify-content: space-between;
        align-items: baseline;
        gap: 1rem;
        margin-top: 0.18rem;
    }

    .wi-mobile-meta {
        font-family: var(--font-sans);
        font-size: 0.67rem;
        font-weight: 300;
        color: var(--text-bronze-dim);
        flex: 1;
        min-width: 0;
    }

    .wi-mobile-glass {
        font-family: var(--font-sans);
        font-size: 0.67rem;
        color: var(--text-bronze-dim);
        white-space: nowrap;
        flex-shrink: 0;
    }

    .wine-country-header { padding: 0.9rem 0.75rem 0.3rem; }
}
