/* ===========================
   21Whisky Static — style.css
   =========================== */

[x-cloak] { display: none !important; }

:root {
    --color-dark: #1a1a1a;
    --color-white: #ffffff;
    --color-cream: #f5f0e8;
    --color-gold: #c9a84c;
    --color-green: #2d6a4f;
    --color-red: #9b2226;
    --color-gray: #666;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-body);
    color: var(--color-dark);
    background: var(--color-cream);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

/* ===== TYPOGRAPHY ===== */
h1,
.h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
}

h2,
.h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    line-height: 1.15;
}

.h4 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 0.02em;
}

.h6 {
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

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

/* ===== LAYOUT ===== */
.wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.container_padding {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.inner {
    position: relative;
}

.grid-margin {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.grid-margin.row-reverse {
    flex-direction: row-reverse;
}

.cell {
    width: 100%;
}

@media (min-width: 768px) {
    .cell.medium-4 {
        width: calc(33.333% - 1.34rem);
    }

    .cell.medium-5 {
        width: calc(41.666% - 1.17rem);
    }

    .cell.medium-7 {
        width: calc(58.333% - 0.83rem);
    }
}

@media (min-width: 1024px) {
    .cell.large-1 {
        width: calc(8.333% - 1.84rem);
    }

    .cell.large-3 {
        width: calc(25% - 1.5rem);
    }

    .cell.large-6 {
        width: calc(50% - 1rem);
    }
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: transparent;
    transition: background 0.3s;
    color: var(--color-white);
}

.header.scrolled {
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
}

.header.scrolled .logo svg {
    fill: #c9a84c;
    color: #c9a84c;
}

.header .container.inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo svg {
    height: 40px;
    width: auto;
    display: block;
    fill: var(--color-white);
    color: var(--color-white);
}

.header_menu {
    display: none;
    gap: 2rem;
}

@media (min-width: 768px) {
    .header_menu {
        display: flex;
        align-items: center;
    }
}

.header_menu li a {
    color: var(--color-white);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: opacity 0.2s;
}

.header_menu li a:hover {
    opacity: 0.7;
}

/* Hamburger */
.hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

@media (min-width: 768px) {
    .hamburger {
        display: none;
    }
}

.hamburger span,
.hamburger::before,
.hamburger::after {
    content: '';
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-white);
    transition: 0.3s;
}

.hamburger::before {
    margin-bottom: 6px;
}

.hamburger::after {
    margin-top: 6px;
}

/* Mobile Menu */
.hamburger_wrapper {
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    height: 100vh;
    background: var(--color-dark);
    padding: 2rem;
    z-index: 200;
}

.hamburger_wrapper.transition {
    transition: transform 0.3s ease;
}

.hamburger_wrapper.closed {
    transform: translateX(100%);
}

.hamburger_wrapper.open {
    transform: translateX(0);
}

.hamburger_close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 30px;
}

.hamburger_close::before,
.hamburger_close::after {
    display: none;
}

.hamburger_close span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-white);
    position: relative;
    transform: rotate(45deg);
}

.hamburger_close span::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 24px;
    height: 2px;
    background: var(--color-white);
    transform: rotate(90deg);
}

.hamburger_menu {
    display: flex !important;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 4rem;
}

.hamburger_menu_overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 150;
}

/* ===== VIDEO BANNER ===== */
.video_banner {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: flex-end;
    padding-bottom: 4rem;
    overflow: hidden;
    background-color: var(--color-dark);
    background-size: cover;
    background-position: center;
}

.video_container {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.video_container::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.1) 100%);
}

.video_container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video_banner .container {
    position: relative;
    z-index: 1;
    color: var(--color-white);
    max-width: 800px;
}

.video_banner h1 {
    margin-bottom: 1.5rem;
    color: var(--color-white);
}

.video_banner .body {
    margin-bottom: 2rem;
}

.video_banner .body p {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
}

/* ===== BUTTONS ===== */
.button {
    display: inline-block;
    padding: 0.875rem 2rem;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 4px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
    text-decoration: none;
}

.button.white.hollow {
    color: var(--color-white);
    border-color: var(--color-white);
    background: transparent;
}

.button.white.hollow:hover {
    background: var(--color-white);
    color: var(--color-dark);
}

.video_banner .button.white.hollow:hover {
    background: var(--color-gold);
    border-color: var(--color-gold);
    color: var(--color-white);
}

.button.no_radius {
    border-radius: 0;
}

.button.white.has_border {
    color: var(--color-dark);
    border-color: var(--color-dark);
    background: transparent;
}

.button.white.has_border:hover {
    background: var(--color-dark);
    color: var(--color-white);
}

.button.green {
    background: var(--color-green);
    color: var(--color-white);
    border-color: var(--color-green);
}

.button.green:hover {
    background: #245a42;
}

.button.red {
    background: var(--color-red);
    color: var(--color-white);
    border-color: var(--color-red);
}

.button.red:hover {
    background: #7d1b1e;
}

.button.small {
    padding: 0.625rem 1.5rem;
    font-size: 0.8rem;
}

.button.has_icon {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.cta_button {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 0.75rem 2rem;
    background: var(--color-gold);
    color: var(--color-white);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.8rem;
    border: none;
    transition: background 0.3s;
    text-decoration: none;
}

.cta_button:hover {
    background: #b8943f;
}

.cask_button {
    margin-top: 1.5rem;
}

/* ===== PAGE LINE ===== */
.page_line.over_banner {
    width: 1px;
    height: 80px;
    background: var(--color-dark);
    margin: 0 auto 3rem;
    opacity: 0.3;
}

.page_line_over_banner_content>.h4 {
    margin-bottom: 3rem;
}

/* ===== MAIN ===== */
.main {
    flex: 1;
    background: var(--color-cream);
}

.main-content {
    padding-top: 120px;
}

.padding-bottom-small {
    padding-bottom: 2rem;
}

/* ===== CASK ITEMS ===== */
.cask_item {
    margin-bottom: 4rem;
}

.cask_item .block {
    position: relative;
    background-size: cover;
    background-position: center;
    padding: 3rem 0;
    color: var(--color-white);
    overflow: hidden;
}

.cask_item .block::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
}

.cask_item .block>* {
    position: relative;
    z-index: 1;
}

.cask_item .block .inner {
    padding: 2rem;
}

.cask_item .block .h1 {
    color: var(--color-white);
    margin-bottom: 1.5rem;
}

.flag {
    position: absolute;
    top: 0;
    left: 2rem;
    width: 40px;
    height: 55px;
    color: var(--color-gold);
    z-index: 2;
}

.flag.flipped {
    left: 2rem;
}

@media (min-width: 768px) {
    .flag.flipped {
        left: calc(41.666% + 2.83rem);
    }
}

@media (min-width: 1024px) {
    .flag.flipped {
        left: calc(50% + 3rem);
    }
}

/* Cask specs */
.cask_specs {
    margin-top: 1rem;
}

.cask_specs li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    font-size: 0.9rem;
}

.cask_specs li:not(.last) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.cask_specs .icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
}

.cask_specs .icon svg {
    width: 100%;
    height: 100%;
}

.cask_specs.secondary {
    color: rgba(255, 255, 255, 0.9);
}

/* Below block body */
.cask_item>.grid-margin {
    padding: 2rem 0;
}

.cask_item>.grid-margin .body {
    padding: 1rem 0;
}

.cask_item>.grid-margin .body p {
    line-height: 1.8;
    color: var(--color-gray);
    margin-bottom: 1rem;
}

.cask_item>.grid-margin .cask_specs li {
    color: var(--color-dark);
}

.cask_item>.grid-margin .cask_specs li:not(.last) {
    border-bottom-color: rgba(0, 0, 0, 0.1);
}

/* Cask image */
.cask_image {
    display: flex;
    justify-content: center;
}

.cask_image img {
    max-height: 500px;
    width: auto;
    object-fit: contain;
}

/* Responsive visibility */
.hide-until-medium {
    display: none;
}

.hide-from-medium {
    display: block;
}

@media (min-width: 768px) {
    .hide-until-medium {
        display: block;
    }

    .hide-from-medium {
        display: none;
    }

    .cask_item .block {
        padding: 4rem 2rem;
    }
}

/* ===== FOOTER ===== */
.footer .top {
    background-image: url('../assets/images/footer-bg.png');
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 4rem 0;
    color: var(--color-white);
}

.footer .top::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
}

.footer .top>* {
    position: relative;
    z-index: 1;
}

.footer .top .h6 {
    margin-bottom: 1rem;
    color: var(--color-gold);
    font-size: 0.75rem;
}

.footer .top a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.2s;
    font-size: 0.9rem;
}

.footer .top a:hover {
    color: var(--color-white);
}

.footer_contact_menu {
    margin-top: 1rem;
}

.footer_contact_menu li {
    margin-bottom: 0.5rem;
}

.footer_contact_menu li a,
.footer_contact_menu li span {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer .icons {
    display: flex;
    gap: 2rem;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.footer .icons img {
    height: 60px;
    width: auto;
    opacity: 0.6;
}

.social_media {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social_media .social {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transition: all 0.3s;
}

.social_media .social:hover {
    border-color: var(--color-white);
    background: rgba(255, 255, 255, 0.1);
}

.social_media .social svg {
    width: 18px;
    height: 18px;
}

.footer .bottom {
    background: var(--color-dark);
    padding: 1.25rem 0;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
}

.footer .bottom .inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer .bottom .visited {
    font-size: 0.75rem;
    opacity: 0.5;
}

/* ===== AGE GATE ===== */
#global_message {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.global_message_overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(6px);
}

.global_message {
    position: relative;
    z-index: 1;
    background: var(--color-cream);
    color: var(--color-dark);
    padding: 3rem 2.5rem;
    text-align: center;
    max-width: 480px;
    width: 90%;
    border-radius: 2px;
    border-top: 3px solid var(--color-gold);
}

.global_message img {
    height: 32px;
    margin: 0 auto 2rem;
}

.global_message .body {
    margin-bottom: 2rem;
}

.global_message .body p {
    font-size: 0.95rem;
    color: var(--color-dark);
    line-height: 1.6;
}

.global_message .body.refused-message p {
    color: var(--color-gray);
    font-style: italic;
}

.global_message .buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.global_message .button.green {
    background: var(--color-green);
    border-color: var(--color-green);
    color: var(--color-white);
}

.global_message .button.green:hover {
    background: #1e4d38;
    border-color: #1e4d38;
}

.global_message .button.red {
    background: var(--color-red);
    border-color: var(--color-red);
    color: var(--color-white);
}

.global_message .button.red:hover {
    background: #7a1a1d;
    border-color: #7a1a1d;
}

@media (min-width: 480px) {
    .global_message .buttons {
        flex-direction: row;
        justify-content: center;
    }
}

/* ===== GRID ===== */
.grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

@media (min-width: 768px) {
    .cell.medium-1 {
        width: calc(8.333% - 1.84rem);
    }

    .cell.medium-2 {
        width: calc(16.666% - 1.67rem);
    }

    .cell.medium-6 {
        width: calc(50% - 1rem);
    }

    .cell.medium-8 {
        width: calc(66.666% - 0.67rem);
    }
}

/* ===== BANNER ===== */
.banner {
    background-size: cover;
    background-position: center;
    position: relative;
}

.banner.secondary {
    padding: 8rem 0 4rem;
    color: var(--color-white);
}

.banner.secondary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

.banner.secondary .container.inner {
    position: relative;
    z-index: 1;
}

.banner.secondary h1 {
    color: var(--color-white);
    margin-bottom: 1rem;
    white-space: nowrap;
}

@media (max-width: 767px) {
    .banner.secondary h1 {
        white-space: normal;
        font-size: clamp(2rem, 8vw, 3rem);
    }
}

.banner.secondary p {
    font-size: 1rem;
    line-height: 1.7;
    opacity: 0.9;
    max-width: 700px;
}

.banner.secondary .container.inner.small.center {
    max-width: 760px;
    text-align: center;
}

.banner.secondary .container.inner.small.center p {
    margin: 0 auto;
}

.banner.primary {
    padding: 8rem 0 4rem;
    color: var(--color-white);
    background-color: var(--color-dark);
}

.banner.primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

.banner.primary .container.inner {
    position: relative;
    z-index: 1;
}

.banner.primary h1 {
    color: var(--color-white);
    margin-bottom: 1rem;
}

.banner.primary p {
    font-size: 1rem;
    line-height: 1.7;
    opacity: 0.9;
}

.banner.primary .container.inner.small.center {
    max-width: 760px;
    text-align: center;
}

.banner.no_image {
    background-color: var(--color-dark);
    padding: 5rem 0 2rem;
}

.banner.no_image::before {
    display: none;
}

.banner.cask_banner {
    min-height: 420px;
    display: flex;
    align-items: center;
    padding: 12rem 0 3rem;
}

.banner.tall {
    padding: 12rem 0 6rem;
}

.banner.cask_banner .container.inner {
    position: relative;
    z-index: 1;
    width: 100%;
}

.banner.cask_banner h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--color-white);
    margin-bottom: 1rem;
}

.banner.cask_banner p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
}

.banner.gold-title h1 {
    color: #f2c94c;
    text-shadow: 0 0 32px rgba(242, 201, 76, 0.35);
}

.banner.cask_banner p em {
    color: #f2c94c;
    font-style: italic;
    text-shadow: 0 0 24px rgba(242, 201, 76, 0.45);
}

.banner.cask_banner p sub {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.75rem;
    letter-spacing: 0.04em;
}

/* ===== PADDING UTILITIES ===== */
.padding-bottom-large {
    padding-bottom: 6rem;
}

/* ===== PAGE LINE ===== */
.page_line {
    width: 1px;
    height: 60px;
    background: var(--color-gold);
    margin: 0 auto 3rem;
    opacity: 0.4;
}

/* ===== MATRIX LAYOUT ===== */
.matrix {
    display: flex;
    flex-direction: column;
}

.matrix_layer {
    padding: 3rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.matrix_layer:last-child {
    border-bottom: none;
}

.matrix_layer.small {
    padding: 1.5rem 0;
}

.matrix_image_text .grid-margin {
    align-items: center;
}

.image_container {
    overflow: hidden;
    border-radius: 2px;
}

.image_container img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}

.image {
    overflow: hidden;
}

.image img {
    width: 100%;
    height: auto;
    display: block;
    background: var(--color-cream);
}

.image.no_background img {
    background: transparent;
}

/* ===== BODY TEXT BLOCK ===== */
.body p {
    line-height: 1.8;
    color: var(--color-gray);
    margin-bottom: 1rem;
}

.body p:last-child {
    margin-bottom: 0;
}

.body p strong {
    color: var(--color-dark);
    font-weight: 600;
    display: block;
    margin-bottom: 0.25rem;
    font-size: 1.05rem;
}

.body p a {
    color: var(--color-gold);
    text-decoration: underline;
}

/* ===== CTA BLOCK ===== */
.cta {
    margin: 1rem 0;
}

.cta .block {
    position: relative;
    background-size: cover;
    background-position: center;
    padding: 0;
    color: var(--color-white);
    overflow: hidden;
    border-radius: 2px;
    min-height: 500px;
    display: flex;
    flex-direction: column;
}

.cta .block::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
}

.cta .block > * {
    position: relative;
    z-index: 1;
}

.cta_inner {
    flex: 1;
    padding: 3rem 2.5rem 4rem;
    padding-right: 200px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.cta_text p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.cta_bottle {
    position: absolute;
    right: 2.5rem;
    top: 45%;
    transform: translateY(-50%);
    width: 130px;
    z-index: 2;
}

.cta_bottle img {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 12px 32px rgba(0, 0, 0, 0.5));
    transition: transform 0.3s ease;
}

.cta_bottle:hover img {
    transform: translateY(-8px) scale(1.03);
}

.cta_vat {
    width: 220px;
}

.cta_inner--vat {
    padding-right: 280px;
}

/* ===== SPECS CONTAINER ===== */
.specs_container {
    padding: 1.5rem;
    background: var(--color-white);
    border-radius: 2px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
}

.specs_container.flipped {
    background: var(--color-dark);
}

.specs_container.flipped .cask_specs li {
    color: rgba(255, 255, 255, 0.85);
}

.specs_container.flipped .cask_specs li:not(.last) {
    border-bottom-color: rgba(255, 255, 255, 0.12);
}

/* ===== BLOG OVERVIEW ===== */
.blog_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 2rem 0 4rem;
}

.blog_card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    background: var(--color-white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 2px;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
}

.blog_card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.blog_card_image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.blog_card_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.blog_card:hover .blog_card_image img {
    transform: scale(1.04);
}

.blog_card_body {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 1.5rem;
    flex: 1;
}

.blog_card_date {
    font-size: 0.8rem;
    color: var(--color-gray);
    font-family: var(--font-body);
}

.blog_card_title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-dark);
    line-height: 1.4;
    flex: 1;
}

.blog_card_link {
    font-size: 0.85rem;
    color: var(--color-gold);
    font-family: var(--font-body);
    font-weight: 500;
}

@media (max-width: 1023px) {
    .blog_grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .blog_grid {
        grid-template-columns: 1fr;
    }
}

/* ===== BLOG DETAIL ===== */
.blog_detail {
    max-width: 780px;
    margin: 0 auto;
}

.blog_detail .back {
    display: inline-block;
    font-size: 0.875rem;
    color: var(--color-gold);
    margin-bottom: 2rem;
    letter-spacing: 0.02em;
    transition: opacity 0.2s;
}

.blog_detail .back:hover {
    opacity: 0.7;
}

.blog_detail .image {
    margin-bottom: 2rem;
    border-radius: 2px;
    overflow: hidden;
    background: #ddd;
}

.blog_detail .image.no_background {
    background: transparent;
}

.blog_detail .image img {
    width: 100%;
    height: auto;
    display: block;
}

.blog_detail .intro {
    margin-bottom: 2rem;
}

.blog_detail .intro .date {
    font-size: 0.8rem;
    color: var(--color-gold);
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.blog_detail h2 {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    margin-top: 2.5rem;
    margin-bottom: 0.5rem;
    text-align: center;
}

.blog_detail .page_line {
    margin-top: 2.5rem;
}

.blog_detail .intro h1 {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 700;
    line-height: 1.25;
    color: var(--color-dark);
}

.blog_matrix .matrix_layer.small {
    border-bottom: none;
}

.blog_matrix .matrix_text.content p {
    line-height: 1.85;
    color: var(--color-dark);
    margin-bottom: 1.25rem;
    font-size: 1rem;
}

.blog_matrix .matrix_text.content p:last-child {
    margin-bottom: 0;
}

.blog_matrix .matrix_text.content a {
    color: var(--color-gold);
    text-decoration: underline;
}

.border-bottom-secondary-light {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    margin: 2.5rem 0;
}

.blog_nav {
    display: flex;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 1.5rem 0 2rem;
}

.blog_nav_prev,
.blog_nav_next {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    max-width: 45%;
    text-decoration: none;
    color: inherit;
}

.blog_nav_next {
    text-align: right;
    margin-left: auto;
}

.blog_nav_label {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--color-gold);
}

.blog_nav_prev .blog_nav_label::before {
    content: '← ';
}

.blog_nav_next .blog_nav_label::after {
    content: ' →';
}

.blog_nav_title {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    color: var(--color-dark);
    line-height: 1.4;
}

.blog_nav_prev:hover .blog_nav_title,
.blog_nav_next:hover .blog_nav_title {
    color: var(--color-gold);
}

/* ===== H5 ===== */
.h5 {
    font-family: var(--font-heading);
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    font-weight: 700;
    line-height: 1.25;
}

/* ===== ACTIVE NAV ===== */
.header_menu li a.active {
    opacity: 0.6;
}

/* ===== TABLET ===== */
@media (max-width: 1024px) {
    .cta_inner { padding-right: 140px; }
    .cta_inner--vat { padding-right: 200px; }
    .cta_bottle { width: 100px; }
    .cta_vat { width: 160px; }
    .banner.tall { padding: 8rem 0 4rem; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 767px) {
    .video_banner {
        min-height: 100vh;
        padding-bottom: 3rem;
    }

    .video_banner h1 {
        font-size: 2.2rem;
    }

    .footer .grid-margin {
        flex-direction: column;
    }

    .footer .cell {
        width: 100% !important;
    }

    .footer .icons {
        justify-content: flex-start;
        padding: 1rem 0;
    }

    .banner.secondary,
    .banner.primary {
        padding: 6rem 0 3rem;
    }

    .banner.cask_banner {
        min-height: 320px;
        padding: 6rem 0 2rem;
    }

    .banner.tall {
        padding: 6rem 0 3rem;
    }

    .grid {
        flex-direction: column;
    }

    .matrix_layer {
        padding: 2rem 0;
    }

    .cta_inner {
        padding: 2.5rem 1.5rem;
        padding-right: 1.5rem;
    }

    .cta_bottle {
        position: static;
        transform: none;
        width: 90px;
        margin: 1.5rem auto 0;
    }

    .specs_container {
        margin-bottom: 1.5rem;
    }

    .blog_detail .intro h1 {
        font-size: 1.5rem;
    }

    .main-content {
        padding-top: 80px;
    }

    .footer .bottom .inner {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
}