/* ==========================================================================
   Grafton Brewing Co. — Global Styles
   ========================================================================== */

:root {
  --ribbon-red: #6e1220;
  --gold: #c9a35a;
  --cream: #f3e6c9;
}

@font-face {
  font-family: 'Hubot Sans';
  src: url('../fonts/HubotSansVF-Regular.ttf') format('truetype');
  font-weight: 100 900;
  font-stretch: 75% 125%;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Dabre Grunge';
  src: url('../fonts/Dabre Grunge.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Cream Cake';
  src: url('../fonts/Cream Cake.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Cream Cake';
  src: url('../fonts/Cream Cake Bold.otf') format('opentype');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

/* ==========================================================================
   Age verification gate — first-visit 18+ check
   ========================================================================== */

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: radial-gradient(circle at center, rgba(40, 8, 14, 0.92) 0%, rgba(10, 2, 4, 0.97) 100%);
}

.age-gate-card {
  position: relative;
  width: 100%;
  max-width: 460px;
  background: var(--cream);
  border: 3px solid var(--ribbon-red);
  border-radius: 6px;
  padding: 48px 40px 40px;
  text-align: center;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
  animation: age-gate-in 0.5s ease-out;
}

@keyframes age-gate-in {
  from { opacity: 0; transform: translateY(24px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.age-gate-logo {
  width: 140px;
  height: auto;
  margin: 0 auto 24px;
  display: block;
}

.age-gate-question {
  font-family: "Dabre Grunge", sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--ribbon-red);
  font-size: 28px;
  letter-spacing: 1px;
  margin: 0 0 12px;
  line-height: 1.2;
}

.age-gate-text {
  font-family: "Oswald", sans-serif;
  font-size: 15px;
  color: #3a2a1c;
  margin: 0 0 28px;
  line-height: 1.5;
}

.age-gate-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.age-gate-btn {
  display: inline-block;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  font-family: "Oswald", sans-serif;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  padding: 14px 34px;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.age-gate-yes {
  background: var(--ribbon-red);
  color: #ffffff;
}

.age-gate-yes:hover {
  background: #8a1a2c;
  transform: translateY(-2px);
}

.age-gate-no {
  background: transparent;
  color: var(--ribbon-red);
  border: 1.5px solid var(--ribbon-red);
}

.age-gate-no:hover {
  background: var(--ribbon-red);
  color: #ffffff;
}

.age-gate-footnote {
  font-size: 11px;
  color: #6b5a44;
  margin: 0;
  line-height: 1.5;
}

@media (max-width: 600px) {
  .age-gate-card {
    padding: 36px 24px 30px;
  }
  .age-gate-logo {
    width: 110px;
  }
  .age-gate-question {
    font-size: 22px;
  }
    .age-gate-btn {
        padding: 12px 15px;
        font-size: 13px;
        width: 106px;
    }
}

* { box-sizing: border-box; }

body {
    overflow-x: hidden;
  margin: 0;
  background: #ffffff;
  font-family: 'Oswald', sans-serif;
  display: flow-root; /* stops main's bottom-margin spacer collapsing into body, which was capping scroll short of the fixed footer reveal */
}

/* ==========================================================================
   Header / Ribbon Navigation
   ========================================================================== */

.site-header {
  position: relative;
  z-index: 10;
  width: 100%;
  background: #ffffff;
  padding-top: 30px;
}

.ribbon-nav {
  width: 100%;
  height: clamp(72px, 9.5vw, 98px);
  background-image: url('../images/header-bg.png');
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: center;
  padding: 0;
}

.ribbon-inner {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 6%;
}

/* Nav lists */

.navbar-collapse {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.navbar-collapse .offcanvas-body {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0;
}

.navbar-collapse .offcanvas-header {
  display: none;
}

.nav-col {
  display: flex;
  align-items: center;
  flex: 1 1 0;
}

.nav-col-left {
  justify-content: flex-end;
  padding-right: clamp(60px, 8vw, 130px);
}

.nav-col-right {
  justify-content: flex-start;
  padding-left: clamp(60px, 8vw, 130px);
}

.nav-list {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 10px 0;
  gap: clamp(0.75rem, 2vw, 2.2rem);
  border-top: 1px solid #FDB913;
  border-bottom: 1px solid #FDB913;
}

.nav-list li a {
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  font-family: 'Oswald', sans-serif;
  font-weight: 300;
  font-size: 18px;
  letter-spacing: 1px;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.nav-list li a:hover,
.nav-list li a:focus {
  color: #ffffff;
}

/* Center logo badge, overlapping the ribbon */

.logo-badge {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 6;
  display: block;
  filter: drop-shadow(0 6px 10px rgba(0, 0, 0, 0.35));
}

.logo-img {
  width: clamp(90px, 9vw, 130px);
  height: auto;
  display: block;
}

/* Cart icon */

.cart-icon {
  position: absolute;
  right: clamp(40px, 7vw, 110px);
  top: 50%;
  transform: translateY(-50%);
  color: #ffffff;
  font-size: 1.1rem;
  z-index: 5;
  line-height: 1;
}

.cart-icon:hover {
  color: var(--gold);
}

/* Mobile toggler */

.navbar-toggler {
  position: absolute;
  left: clamp(16px, 4vw, 40px);
  top: 50%;
  transform: translateY(-50%);
  border:none;
  padding: 4px 8px;
  z-index: 7;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.15rem rgba(201, 163, 90, 0.5);
}
.navbar-toggler-icon{
    width:28px;
    height:28px;
}

/* ==========================================================================
   Responsive — collapse nav below large breakpoint
   ========================================================================== */
@media (max-width:1200px) {
    .nav-list li a{
        font-size:16px !important;
    }
}
@media (max-width: 991.98px) {
  .ribbon-inner {
    padding: 0 4%;
  }

  #mainNav.navbar-collapse {
    --bs-offcanvas-width: calc(100% - 48px);
    --bs-offcanvas-bg: var(--ribbon-red);
    --bs-offcanvas-color: #fff;
    --bs-offcanvas-transition: transform 0.35s ease-in-out;
    flex-direction: column;
    align-items: stretch;
    z-index: 1045;
  }

  #mainNav .offcanvas-header {
    display: flex;
    width: 100%;
    justify-content: flex-end;
    padding: 1.25rem 1.5rem 0;
  }

  #mainNav .btn-close {
    opacity: 1;
    box-shadow: none;
  }
.btn-close-white {
    filter: var(--bs-btn-close-white-filter);
    background-color: #fff;
}
  #mainNav .offcanvas-body {
    display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        gap: 18px;
        padding: 4rem 1.5rem 3rem;
        overflow-y: auto;
  }

  .nav-col-left,
  .nav-col-right {
    width: 100%;
    flex: 0 0 auto;
    justify-content: center;
    padding: 0;
  }

  .nav-list {
    flex-direction: column;
    width: 100%;
    align-items: center;
    gap: 18px;
    border-top: 0;
    border-bottom: 0;
    padding: 0;
  }

  .nav-list li a {
    font-size: 18px;
  }
}

/* ==========================================================================
   Hero — "Bold Beer, Big Flavour"
   ========================================================================== */

.hero-section {
  width: 100%;
  padding:60px 1px 10px;
  background: #ffffff;
}

.hero-frame {
  border: none;
  position: relative;
}

.hero-frame-inner {
  border: none;
  margin: 0;
  padding: clamp(26px, 4vw, 72px) clamp(27px, 5vw, 60px);
  position: relative;
  overflow: hidden;
  background: #ffffff;
}

.hero-grid {
  padding: 0;
}

/* Composited cans + logo slide */

.hero-cans-layout {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(6px, 6vw, 34px);
  max-width: 1440px;
  margin: 0 auto;
}

.hero-cans-side {
  display: flex;
  align-items: center;
  gap: 40px;
}

.hero-can {
  display: block;
  width: clamp(58px, 10.4vw, 110px);
  height: auto;
  filter: drop-shadow(0 12px 16px rgba(0, 0, 0, 0.16));
}

.hero-can-outer {
  transform: translateY(clamp(-110px, -4.6vw, -130px)) !important;
}

.hero-can-mid {
  transform: translateY(clamp(-18px, -2.2vw, -12px)) !important;
}

.hero-can-inner {
  transform: translateY(clamp(34px, 1.4vw, 20px)) !important;
}

.hero-logo-wrap {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-logo-img {
  display: block;
  height: auto;
}

@media (max-width: 767.98px) {
  /* .hero-cans-layout {
    flex-wrap: wrap;
    row-gap: 20px;
  } */

  /* .hero-logo-wrap {
    order: -1;
    flex-basis: 100%;
  } */

  .hero-can-outer,
  .hero-can-mid,
  .hero-can-inner {
    transform: none;
  }
  .hero-logo-img {
    display: block;
    width: clamp(70px, 21.5vw, 255px) !important;
    height: auto;
}

.hero-cans-side{
    gap:10px;
}

    .findus-content{
        padding:40px 20px !important;
    }
}

.hero-col-left {
  text-align: left;
}

.hero-col-right {
  text-align: right;
}

/* Stamped / halftone display type */

.stamp-mask {
  display: inline-block;
  vertical-align: top;
}

.stamp {
  display: inline-block;
  font-family: 'Dabre Grunge', sans-serif;
  text-transform: uppercase;
  line-height: 0.82;
  letter-spacing: 1px;
  font-size: clamp(3rem, 7vw, 6rem);
  color: #111111;
}

.stamp-xl {
  font-size: clamp(3.6rem, 8.5vw, 7.2rem);
}

.hero-stamp-heading {
  margin: 0 0 14px;
}

.hero-indent {
  margin-left: clamp(20px, 4vw, 60px);
}

.hero-flavour-heading {
  margin: 10px 0 0;
}

/* Script accents */

.hero-script {
  font-family: 'Cream Cake', cursive;
  font-size: clamp(1.3rem, 2.4vw, 1.9rem);
  color: #1a1a1a;
  margin: 0;
}

/* Beer cans + CTA */

.hero-cans-wrap {
  position: relative;
  display: inline-block;
  max-width: 100%;
}

.hero-cans-img {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 20px rgba(0, 0, 0, 0.18));
}

.hero-cta {
  position: absolute;
  left: 50%;
  bottom: 6%;
  transform: translateX(-50%);
  display: inline-block;
  white-space: nowrap;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(4px);
  color: #1a1a1a;
  text-decoration: none;
  text-transform: uppercase;
  font-family: 'Hubot Sans', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 1px;
  padding: 14px 28px;
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
  transition: background 0.2s ease, transform 0.2s ease;
}

.hero-cta:hover {
  background: #ffffff;
  transform: translateX(-50%) translateY(-2px);
}

/* Tagline copy */

.hero-tagline {
  font-family: 'Hubot Sans', sans-serif;
  text-transform: uppercase;
  text-align: left;
  font-size: 0.85rem;
  letter-spacing: 1px;
  line-height: 1.6;
  color: #1a1a1a;
  margin: 0 auto 16px 0;
  max-width: 440px;
}

/* Slider dots */

.hero-swiper .hero-dots {
  position: absolute;
  right: clamp(20px, 3vw, 40px);
  left: auto;
  bottom: auto;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 5;
  width: auto;
}

.hero-dots .dot {
  appearance: none;
  -webkit-appearance: none;
  width: 12px;
  height: 12px;
  padding: 0;
  border-radius: 50%;
  border: 1.5px solid #b3b3b3;
  background: transparent;
  cursor: pointer;
  /* flex-shrink: 0; */
  /* transition: background 0.2s ease, border-color 0.2s ease, width 0.2s ease,
    height 0.2s ease, box-shadow 0.2s ease; */
    
}

.hero-dots .dot:focus-visible {
  /* outline: 2px solid var(--gold); */
  outline-offset: 2px;
}

.hero-dots .dot.is-active,
.hero-dots .dot[aria-current="true"] {
  width: 10px;
  height: 10px;
  border-color: #1a1a1a;
  background: #1a1a1a;
  box-shadow: 0 0 0 3px #ffffff, 0 0 0 4.5px rgba(26, 26, 26, 0.35);
  
}

@media (max-width: 991.98px) {
  .hero-col-left,
  .hero-col-right {
    text-align: center;
  }

  .hero-indent {
    margin-left: 0;
  }

  .hero-dots {
    display: none;
  }

  .hero-logo-img{
    width:210px;
  }
}



.beer-title{
    display: inline-block;
    overflow: hidden;
}

.beer-title span{
    display: inline-block;
}

.beer-title-wrapper::before,
.beer-title-wrapper::after{
    content: '';
    position: absolute;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: rgba(255,255,255,.6);
    animation: bubbleUp 5s linear infinite;
}

.beer-title-wrapper::before{
    left: 20%;
    bottom: -20px;
}

.beer-title-wrapper::after{
    right: 20%;
    bottom: -40px;
    animation-delay: 2s;
}

@keyframes bubbleUp{
    0%{
        transform: translateY(0) scale(.5);
        opacity:0;
    }
    20%{
        opacity:1;
    }
    100%{
        transform: translateY(-100px) scale(1.3);
        opacity:0;
    }
}



.beer-heading-section .container{
    position: relative;
    padding: 110px 20px 90px;
    text-align: center;
    overflow: hidden;

    /* Background Image */
    background: url('../images/bg-grain.png') center center no-repeat;
    background-size: 88% 70%;
}

.beer-title-wrapper{
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0px;
}

.beer-title{
    font-family: 'Cream Cake', cursive;
    font-size: 60px;
    line-height: 1;
    color: #000;
    margin: 0;
    font-weight: 400;
}

.beer-side-icon {
    width: 60px;
    height: auto;
    flex-shrink: 0;
    margin-top: -36px;
    animation: zoomInOut 3s ease-in-out infinite;
    transform-origin: center;
}

@keyframes zoomInOut {
    0% {
    transform: scale(1);
    }
    50% {
        transform: scale(1.25);
    }
    100% {
        transform: scale(1);
    }
}

@media(max-width:1024px){
    
    .beer-heading-section .container{
        background-size: 100% 90%;
    }
}

@media(max-width:768px){
    
    .beer-heading-section .container{
        padding: 50px 20px;
    }


    .beer-title-wrapper{
        gap: 12px;
    }

    .beer-side-icon{
        width: 35px;
    }

    .beer-heading-section{
        padding: 40px 15px 0;
    }
}

@media(max-width:576px){

    .beer-title{
        font-size: 34px;
    }

    .beer-side-icon{
        width: 28px;
    }
}


/* ==========================================================================
   Experience section — beer cards with hover-to-video
   ========================================================================== */

.experience-section {
  width: 100%;
  padding: clamp(50px, 8vw, 100px) 5% clamp(60px, 9vw, 110px);
  text-align: center;
  background: #ffffff;
}

.experience-script {
    font-family: 'Cream Cake', cursive;
    font-size: 32px;
    color: #000000;
    font-weight: bold;
    margin: -10px;
}

.experience-heading {
  align-items: baseline;
  gap: clamp(10px, 1.6vw, 20px);
  flex-wrap: wrap;
  margin: 0 0 clamp(20px, 6vw, 10px);
}

.experience-stamp {
  font-family: 'Dabre Grunge';
  font-weight: 500;
  letter-spacing: 1px;
  font-size: 80px;
  color: #000000;
  margin-right: 17px;
}

.experience-brand {
  position: relative;
  display: inline-block;
  font-family: 'Dabre Grunge';
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 80px;
  color: #000000;
  text-align: left;
  z-index: 999;
}

.experience-underline {
width: 100%;
bottom: 20%;
z-index: -1;
position: absolute;
display: block;
margin-left: -10px;
transform: scaleX(0);
transform-origin: left center;
animation: underlineDraw 2.5s ease-in-out infinite;
}

.experience-underline-yellow, .footer-newsletter h2 img{
transform: scaleX(0);
transform-origin: left center;
animation: underlineDraw 2.5s ease-in-out infinite;
}

@keyframes underlineDraw {
0% {
transform: scaleX(0);
opacity: 0;
}

40%,
70% {
transform: scaleX(1);
opacity: 1;
}

100% {
transform: scaleX(0);
opacity: 0;
}
}

.experience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(16px, 2.5vw, 40px);
  margin: 0 auto;
}

.beer-card {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  aspect-ratio: 848 / 915;
  cursor: pointer;
}

.beer-card-img,
.beer-card-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.beer-card-video {
  opacity: 0;
  transition: opacity 0.4s ease;
}

.beer-card:hover .beer-card-video {
  opacity: 1;
}
@media (max-width: 991px) {
 .experience-stamp, .experience-brand {
    font-size: 60px;
}
.experience-script, .experience-heading {
    text-align: center;
}
}
@media (max-width: 767.98px) {
  .experience-grid {
    grid-template-columns: 1fr;
  }
   .experience-stamp, .experience-brand {
    font-size: 35px;
}
.experience-script {
    font-family: 'Cream Cake', cursive;
    font-size: 26px;
    line-height: 29px;
    color: #000000;
    font-weight: bold;
    margin: 0px;
}
}


/* ==========================================================================
   Pour section — sticky pinned image, staged scroll reveal
   ========================================================================== */

.pour-section {
  position: relative;
  height: 180vh;
}

.pour-sticky-wrap {
  position: sticky;
  top: 0;
  overflow: hidden;
  background: #ffffff;
}

.pour-media {
  position: absolute;
  inset: 0;
}

.pour-video{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
    z-index:1;
}

.pour-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 2;
  pointer-events: none;
}

.pour-content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 25px;
  text-align: center;
  padding: 230px 5%;
  
}

.pour-heading {
  position: relative;
  margin: 0;
  display: inline-block;
}

.pour-heading-text {
  display: block;
  font-family: "Dabre Grunge", sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  color: #ffffff;
  letter-spacing: 1px;
  font-size: 66px;
  line-height: 1.15;
}

.pour-underline {
    /* display: block; */
    position: absolute;
    width: auto;
    margin: auto;
    transform-origin: left center;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 8px;
    z-index: -2;
}

.pour-cta {
  display: inline-block;
  background: #917d6a;
  backdrop-filter: blur(4px);
  color: #FFFFFF;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 300;
  font-size: 20px;
  letter-spacing: 1px;
  padding: 14px 30px;
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
  transition: background 0.2s ease, transform 0.2s ease;
}
.pour-cta:hover {
  background: #ffffff;
  /* transform: translateY(-2px); */
  color: #a4002a;
}
@media (max-width: 767px) {
  /* The sticky-pin scroll trick needs its pinned frame to match the
     viewport exactly, or the leftover space below shows as blank dead
     space. A shorter frame (needed so the landscape video isn't cropped
     to a tight zoom on narrow screens) can't satisfy that, so on mobile
     the section flows normally instead of pinning — the reveal timeline
     below switches to a plain scroll-through scrub for this breakpoint. */
  .pour-section {
    height: auto;
  }
  .pour-sticky-wrap {
    position: relative;
    top: auto;
    height: 65vh;
  }
  .pour-content {
    height: 100%;
    padding: 60px 5%;
  }
  .pour-cta {
    font-size: 14px !important;
    padding: 14px 30px !important;
}
}

@media (max-width: 600px) {
  .pour-heading-text{
    font-size: 30px;
  }
  .pour-underline {
    width: 81%;
    bottom: 3px;
}
}


/* ==========================================================================
   Heritage section
   ========================================================================== */

.heritage-section{
    padding:0px 0 80px;
    background:#fff;
    overflow:hidden;
}

.heritage-wrapper{
    display:flex;
    gap: 0;
    align-items:stretch;
    /* min-height:560px; */
    position:relative;
}

/* LEFT IMAGE */

.heritage-image{
    width:60%;
    position:relative;
    height:100%;
}

.heritage-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

/* RIGHT PANEL */


.heritage-content {
    width: 60%;
    position: relative;
    background-image:url('../images/Mask\ group\ \(7\).png');
    background-size: 102% 100%;
    background-repeat: no-repeat;
    background-position: left center;
    display: flex;
    align-items: center;
    margin-left: -200px;
    padding-left: 80px;
}
.heritage-inner{
    /* max-width:560px; */
    padding:80px 70px;
}

/* SCRIPT FONT */

.heritage-subtitle{
    display:block;
    font-family:'Cream Cake', cursive;
    font-size:32px;
    color:#fff;
    margin-bottom:5px;
    line-height:1;
}

/* MAIN TITLE */

.heritage-title{
    font-family: 'Dabre Grunge';
    font-size:72px;
    line-height:0.95;
    color:#fff;
    margin:0;
    text-transform:uppercase;
    position: relative;
    display: inline;
    z-index: 999;
}

/* YELLOW LINE */

.heritage-line{
    width:180px;
    height:6px;
    background:#d6a400;
    margin:18px 0 35px auto;
}
.experience-underline-yellow {
    width: 54%;
    bottom: 14%;
    z-index: 999;
    position: absolute;
    display: block;
    right: -28px;
    z-index: -1;
}
/* BODY */

.heritage-text{
        font-family: 'Oswald', sans-serif;
    font-size: 28px;
    line-height: 43px;
    color: #fff;
    font-weight: 300;
    text-transform: uppercase;
    margin: 0;
    letter-spacing: 1px;
    max-width: 650px;
    margin-top: 20px;
}

/* TABLET */
@media(max-width:1400px){
.heritage-title{
        font-size:40px;
    }
    .heritage-text {
    font-size: 18px;
    line-height: 28px;
}
}
@media(max-width:1200px){

    .heritage-title{
        font-size:50px;
    }

    .heritage-text{
        font-size:18px;
    }

    .heritage-inner{
        padding:60px 50px;
    }
}

/* MOBILE */

@media(max-width:991px){
.heritage-content {
    width: 60%;
    position: relative;
    background-image: url('../images/bg-heritage-mobile.png');
    background-size: 102% 100%;
    background-repeat: no-repeat;
    background-position: left center;
    display: flex;
    align-items: center;
    margin-left: -200px;
    padding-left: 80px;
}
    .heritage-wrapper{
        flex-direction:column;
    }

    .heritage-image,
    .heritage-content{
        width:100%;
    }

    /* .heritage-image{
        height:400px;
    } */

    .heritage-content{
        background-size:cover;
        background-position:center;
        margin-left: 0px;
        padding-left: 0;
        justify-content: center;
    }

    .heritage-inner{
        padding:100px 30px;
        text-align:center;
        max-width: 500px;
    }

    .heritage-subtitle{
        font-size:34px;
    }

    .heritage-title{
        font-size:42px;
    }

    .heritage-line{
        margin:20px auto 30px;
    }

    .heritage-text{
        font-size:16px;
        line-height:1.7;
    }

}

@media(max-width:576px){

    /* .heritage-image{
        height:280px;
    } */

    .heritage-subtitle{
        font-size:28px;
    }

    .heritage-title{
        font-size:34px;
    }

    .heritage-text{
        font-size:15px;
    }
     .heritage-inner{
        padding:60px 30px;
        text-align:center;
    }
}


/* =========================
   GRAFTON BEER SLIDER
========================= */

.grafton-slider-section{
    position: relative;
    padding: 80px 0;
    background: #ffffff;
    overflow: hidden;
}

.grafton-swiper-outer{
    position: relative;
    padding: 0 70px;
}

.grafton-swiper{
    overflow: hidden;
}

/* Slide */

.grafton-swiper .swiper-slide{
    height: auto;
}

/* Card */

.grafton-product-card{
    text-align: center;
}

.grafton-can-image{
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.grafton-can-image img{
    max-height: 100%;
    width: auto;
}

.swiper-slide:nth-child(odd) .grafton-can-image img {
    animation: floatUp 4s ease-in-out infinite;
}

/* Even cards: down → up → down */
.swiper-slide:nth-child(even) .grafton-can-image img {
    animation: floatDown 4s ease-in-out infinite;
}

@keyframes floatUp {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-12px);
    }
    100% {
        transform: translateY(0);
    }
}

@keyframes floatDown {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(12px);
    }
    100% {
        transform: translateY(0);
    }
}

.grafton-product-card:hover .grafton-can-image img{
    transform:translateY(-18px) scale(1.05);
}
/* .grafton-swiper .swiper-slide{
    opacity:.5;
    transition:.5s ease;
} */
.grafton-swiper{
    overflow:hidden;
}

.grafton-swiper .swiper-slide-active,
.grafton-swiper .swiper-slide-next,
.grafton-swiper .swiper-slide-prev{
    opacity:1;
}
.grafton-view-all-btn{
    animation:pulseBeer 2.5s infinite;
}

@keyframes pulseBeer{
    0%{
        box-shadow:0 0 0 0 rgba(240,179,16,.5);
    }

    70%{
        box-shadow:0 0 0 15px rgba(240,179,16,0);
    }

    100%{
        box-shadow:0 0 0 0 rgba(240,179,16,0);
    }
}

/* Title */

.grafton-product-title{
    font-size: 26px;
    line-height: 36px;
    color: #000000;
    margin: 20px 0 12px;
    letter-spacing: 1px;
    font-weight: 400;
}

/* ABV */

.grafton-product-abv{
    font-family: 'Oswald', sans-serif;
    font-size: 20px;
    color: #000000;
    font-weight: 300;
}

/* Navigation */

.grafton-slider-prev,
.grafton-slider-next{
    width: 56px;
    height: 56px;
    background: #a4002a;
    border-radius: 50%;
    position: absolute;
    top: 34%;
    transform: translateY(-50%);
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .3s ease;
}

.grafton-slider-prev{
    left: 0;
}

.grafton-slider-next{
    right: 0;
}

.grafton-slider-prev i,
.grafton-slider-next i{
    color: #fff;
    font-size: 18px;
}

.grafton-slider-prev:hover,
.grafton-slider-next:hover{
    background: #850021;
}

/* Button */

.grafton-view-all-btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #f0b310;
    border-radius: 50px;
    color: #000;
    text-decoration: none;
    font-size: 20px;
    letter-spacing: .5px;
    transition: all .3s ease;
        padding: 12px 30px;
}

.grafton-view-all-btn:hover{
    background: #d89d07;
    color: #000;
}

/* Tablet */

@media (max-width: 991px){

    .grafton-slider-section{
        padding: 60px 0;
    }

    .grafton-swiper-outer{
        padding: 0 50px;
    }

    .grafton-swiper .swiper-slide{
        padding-top:20px;
    }

    .grafton-can-image{
        height: 260px;
    }

    .grafton-product-title{
        font-size: 20px;
        line-height: 30px;
    }

    .grafton-product-abv{
        font-size: 18px;
    }
}

/* Mobile */

@media (max-width: 767px){

    .grafton-swiper-outer{
        padding: 0 40px;
    }

    .grafton-can-image{
        height: 220px;
    }

    .grafton-product-title{
        font-size: 20px;
        line-height: 30px;
    }

    .grafton-product-abv{
        font-size: 16px;
    }

    .grafton-slider-prev,
    .grafton-slider-next{
        width: 42px;
        height: 42px;
    }

    .grafton-slider-prev i,
    .grafton-slider-next i{
        font-size: 14px;
    }

    .grafton-view-all-btn{
        min-width: 160px;
        height: 50px;
        font-size: 20px;
    }
}


/* =========================
   EXPLORE SECTION
========================= */

    .explore-section{
        padding:100px 0;
        overflow:hidden;
    }

    /* Header */

    .explore-header{
        display:flex;
        justify-content:space-between;
        align-items:flex-start;
        margin-bottom:40px;
    }

    .explore-subtitle{
        display:block;
        font-family:'Cream Cake', cursive;
        font-size:48px;
        color:#000;
        margin-bottom:10px;
        line-height:1;
    }

    .explore-title{
        position:relative;
        display:inline-block;
        margin:0;

        font-family:'Dabre Grunge', sans-serif;
        font-size:90px;
        line-height:1;
        color:#000;
    }

    .explore-title-highlight{
        position:relative;
        display:inline-block;
        z-index:1;
    }

    .explore-title-underline{
        position:absolute;
        left:0;
        bottom:2px;
        width:100%;
        z-index:-1;
    }

    /* Navigation */

    .explore-nav{
        display:flex;
        gap:15px;
        margin-top:30px;
    }

    .explore-prev,
    .explore-next{
        width:56px;
        height:56px;
        border-radius:50%;
        background:#a4002a;

        display:flex;
        align-items:center;
        justify-content:center;

        color:#fff;
        cursor:pointer;
        transition:.3s ease;
    }

    .explore-prev:hover,
    .explore-next:hover{
        transform:translateY(-3px);
        background:#850021;
    }

    /* Swiper */

     .explore-card{
        height: auto;
    } 
    .explore-slider-wrap{
        margin-left: calc((100vw - 1320px) / 2);
        overflow: hidden;
    }

    .exploreSwiper{
        overflow: visible;
        width: 100%;
    }

    .exploreSwiper .swiper-slide{
        width: 420px;
    }

    .exploreSwiper .swiper-slide{
        height:auto;
    }

    /* Cards */

    .explore-card{
        position:relative;
        display:block;
        height:100%;
        text-decoration:none;
        overflow:hidden;
    }

    /* Image */

    .explore-card img{
        width: 100%;
        height: auto;
        display: block;
        transition: all .8s ease;
        transform: scale(1);
    }

    /* IMPORTANT:
    No image zoom to preserve distressed border shape */

    .explore-card:hover img{
        transform:scale(1);
    }


    /* Title */

    .explore-card h3{
        position:absolute;
        left:28px;
        right:20px;
        bottom:22px;
        margin:0;
        text-align:center;
        font-family:'Dabre Grunge', sans-serif;
        font-size:68px;
        line-height:1;
        color:#fff;
        z-index:3;
        transition:.4s ease;
    }

    .explore-card:hover h3{
        bottom:30px;
    }

    /* Optional subtle card lift */

    .explore-card{
        transition:transform .4s ease;
    }

    .explore-card:hover{
        transform:translateY(-6px);
    }

    /* Responsive */
    /* =========================
    LARGE DESKTOP
    ========================= */

    @media(min-width:1400px){

        .explore-slider-wrap{
            margin-left: calc((100vw - 1320px) / 2);
        }

        .exploreSwiper .swiper-slide{
            width: 420px;
        }
        
    }

    /* =========================
    DESKTOP
    ========================= */

    @media(max-width:1399px){

        .explore-slider-wrap{
            margin-left: calc((100vw - 1140px) / 2);
        }

        .exploreSwiper .swiper-slide{
            width: 380px;
        }
        
    }

    /* =========================
    LAPTOP
    ========================= */

    @media(max-width:1200px){

        .explore-slider-wrap{
            margin-left: calc((100vw - 960px) / 2);
        }

        .exploreSwiper .swiper-slide{
            width: 330px;
        }

        .explore-title{
            font-size:70px;
        }

        .explore-card h3{
            font-size:52px;
        }
    }

    /* =========================
    TABLET
    ========================= */

    @media(max-width:991px){

        .explore-slider-wrap{
            margin: 0 15px;
        }

        .exploreSwiper .swiper-slide{
            width:320px;
        }

        .explore-header{
            flex-direction:column;
            gap:20px;
        }
        .explore-parent-box{
            margin:auto;
        }
        .explore-nav{
            margin:auto;
        }

        .explore-title{
            font-size:55px;
        }

        .explore-subtitle{
            font-size:36px;
        }

        .explore-card h3{
            font-size:48px;
        }
    }

    /* =========================
    MOBILE
    ========================= */

    @media(max-width:767px){

        .explore-section{
            padding:70px 0;
        }

        .exploreSwiper .swiper-slide{
            width:280px;
        }

        .explore-title{
            font-size:38px;
        }

        .explore-subtitle{
            font-size:26px;
        }

        .explore-title img{
            width:120px;
            bottom:2px;
        }

        .explore-card h3{
            font-size:38px;
            bottom:20px;
        }

        .explore-prev,
        .explore-next{
            width:46px;
            height:46px;
        }
    }

    /* =========================
    SMALL MOBILE
    ========================= */

    @media(max-width:480px){

        .explore-slider-wrap{
            margin: 0 10px;
        }

        .exploreSwiper .swiper-slide{
            width:260px;
        }

        .explore-title{
            font-size:32px;
        }

        .explore-subtitle{
            font-size:20px;
            line-height:1.3;
        }
    }



/* ==========================================================================
   Find Us
   ========================================================================== */

.findus-section {
  width: 100%;
  background: #efe7db;
  margin-top: 90px;
}
.fid-img{
    height: 100%;
}
.findus-content{
    padding-left:max(
        15px,
        calc((100vw - 1320px) / 2)
    );
    padding-right:60px;
        padding-top: 40px;

}
.detail-findus h4{
  color: #3C3C3C;
  font-size: 24px;
  line-height: 36px;
  font-weight: 400;
  margin-bottom: 15px;
  text-transform: uppercase;
  
}
.detail-findus a{
  color: #3C3C3C;
  font-size: 26px;
  line-height: 36px;
  font-weight: 400;
  text-decoration: none;
  display: block;
}
.detail-findus{
    text-align: center; 
}
.findus-grid{
    display: flex;
    gap: 40px;
    align-items: center;
    position: relative;

}
.findus-grid-left{
    display: flex;
    flex-direction: column;
    gap: 40px;
    width: 50%;

}
.findus-grid-right{
  width: 50%;
}
.detail-findus img{
  margin-bottom: 15px;
}

.findus-grid-right h5{
  font-size: 18px;
  color: #000000;
  font-weight: 400;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 5px;
}
.findus-grid-right p{
  font-size: 16px;
  color: #C0811A;
  font-weight: 400;
  text-align: center;
  text-transform: uppercase;
}
.time-row{
  margin-bottom: 20px;
  margin-top: 15px;
}
/* Center Divider */

.findus-grid-right::before{
    content:"";
    position:absolute;
    right: 0;
    margin: auto;
    left:30px;
    top:50%;
    transform:translateY(-50%);
    width:1px;
    height:350px;
    background:#b31b4a;
}

@media (max-width: 650px){

.findus-grid {
    display: flex;
    gap: 40px;
    flex-direction: column;
}
.findus-grid-right::before{
  display: none;
}
.detail-findus h4, .detail-findus a{
  font-size: 16px;
  line-height: 26px;
}
.findus-grid-right{
  width: 100%;
}
.findus-grid-left{
  width: 100%;
}
  .find-center{
    text-align: center;
  }
}


/* =========================
   FOLLOW OUR JOURNEY
========================= */

.journey-section{
    /*background:#f5f4ef;*/
    padding:80px 0;
    overflow:hidden;
}

.journey-heading{
    text-align:center;
    margin-bottom:35px;

    font-family:'Oswald', sans-serif;
    font-size:54px;
    font-weight:500;
    text-transform:uppercase;
    letter-spacing:1px;
    color:#111;
}

.journey-heading span{
    color:#b10034;
}

/* Grid */

.journey-grid{
    display:flex;
    /* display:grid;
    grid-template-columns:repeat(6,1fr); */
    gap:0;
}

/* Desktop */
@media (min-width: 992px) {

    .journeySwiper {
        overflow: visible;
    }

    .journeySwiper .swiper-wrapper {
        display: grid;
        grid-template-columns: repeat(6, 1fr);
        gap: 0;
        transform: none !important;
        transition-timing-function: linear !important;
    }

    .journeySwiper .swiper-slide {
        width: auto !important;
        margin-right: 0 !important;
    }

}

/* Cards */

.journey-card{
    position:relative;
    display:block;
    overflow:hidden;
}

.journey-card img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;

    transition:0.8s ease;
}

/* Hover Overlay */

.journey-card::before{
    content:'';
    position:absolute;
    inset:0;

    background:rgba(0,0,0,.25);

    opacity:0;
    transition:.4s ease;
    z-index:2;
}

.journey-card:hover::before{
    opacity:1;
}

.journey-card:hover img{
    transform:scale(1.08);
}

/* Instagram Icon Hover */

.journey-card::after{
    content:'\f16d';
    font-family:'Font Awesome 6 Brands';

    position:absolute;
    top:50%;
    left:50%;

    transform:translate(-50%,-50%) scale(.7);

    width:70px;
    height:70px;

    background:#b10034;
    color:#fff;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    opacity:0;
    transition:.4s ease;

    z-index:3;
    font-size:28px;
}

.journey-card:hover::after{
    opacity:1;
    transform:translate(-50%,-50%) scale(1);
}

/* Entrance Animation */

.journey-card{
    animation:journeyReveal .8s ease forwards;
}

.journey-card:nth-child(1){animation-delay:.1s;}
.journey-card:nth-child(2){animation-delay:.2s;}
.journey-card:nth-child(3){animation-delay:.3s;}
.journey-card:nth-child(4){animation-delay:.4s;}
.journey-card:nth-child(5){animation-delay:.5s;}
.journey-card:nth-child(6){animation-delay:.6s;}

@keyframes journeyReveal{

    from{
        opacity:0;
        transform:translateY(50px);
    }

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


@media(max-width:1024px){
    .journey-heading{
        font-size:38px;
    }
}


/* Tablet */

@media(max-width:991px){

    .journey-heading{
        font-size:30px;
    }

    .journeySwiper .swiper-wrapper {
        display: flex;
    }

    .journeySwiper .swiper-slide {
        width: auto;
    }

}

/* Mobile */

@media(max-width:767px){

    .journey-section{
        padding:60px 0;
    }

    .journey-heading{
        font-size:30px;
        padding:0 15px;
    }

    .journey-card::after{
        width:55px;
        height:55px;
        font-size:22px;
    }
}


/* =========================
   FOOTER
========================= */
.grafton-footer{
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    max-height: 100vh;
    z-index: 1;
    overflow-y: auto;
}

/* Newsletter */

.footer-newsletter{
    background-image:url("../images/bg-footer.png");
    background-size:cover;
    background-position:center;
    background-repeat: no-repeat;
    position: relative;
    padding:120px 20px;
    text-align:center;

}

.footer-newsletter-content{
    max-width:900px;
    margin:auto;
}

.footer-newsletter h2{

    position:relative;
    display:inline-block;
    font-family:'Dabre Grunge', sans-serif;
    font-size:72px;
    color:#fff;
    margin-bottom:15px;
}

.footer-newsletter h2 img{
    position: absolute;
    right: 10px;
    bottom: 17px;
    width: 300px;
    z-index: -1;
}

.footer-newsletter p{
    color:#fff;
    font-family:'Oswald', sans-serif;
    font-size:20px;
    margin-bottom:35px;
}

/* Form */

.newsletter-form{
    display:flex;
    align-items:center;
    background:#fff;
    border-radius:60px;
    padding:6px;
    max-width:460px;
    margin:auto;
}

.newsletter-form input{
    flex:1;
    border:none;
    background:transparent;
    height:40px;
    padding:0 40px;
    font-family:'Oswald', sans-serif;
    font-size:16px;
    color:#222;
    outline:none;
}

.newsletter-form button{
    min-width:180px;
    height:44px;
    border:none;
    border-radius:50px;
    background:#F5B400;
    font-family:'Oswald', sans-serif;
    font-size:16px;
    font-weight:600;
    text-transform:uppercase;
    color:#000;
    cursor:pointer;
    transition:all .3s ease;
}

.newsletter-form button:hover{
    background:#ffcb2f;
    transform:translateY(-2px);
}

/* Main Footer */

.footer-main{
    background:#262626;
    padding:70px 0 40px;
}

.footer-grid{
    display:grid;
    grid-template-columns:
    180px
    1.4fr
    1fr
    1fr
    180px;
    gap:40px;
    align-items:start;
}

.footer-logo{
    max-width:130px;
}

.footer-col h4{
    color:#fff;
    font-family:'Dabre Grunge', sans-serif;
    font-size:28px;
    margin-bottom:25px;

}

.footer-col ul{
    list-style:none;
    padding:0;
    margin:0;
}

.footer-col li{
    gap: 5px;
    display: flex;
    color:#fff;
    margin-bottom:15px;
    font-family:'Oswald', sans-serif;
}

.footer-col a{
    color:#fff;
    text-decoration:none;
    transition:.3s;
}

.footer-col a:hover{
        color:#f0b40b;
}

.footer-col i{
    color:#fff;
    margin-top:4px;
    margin-right:10px;
}

.footer-independent img{
    max-width:120px;
}

/* Divider */

.footer-divider{
    height:1px;
    background:rgba(255,255,255,.15);
    margin:50px 0;
}

/* Copyright */

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

.footer-copy p{
    color:#fff;
    margin-bottom:10px;
    font-family:'Oswald', sans-serif;
}

.footer-copy span{
    color:#f0b40b;
    font-size:13px;
    display:block;
}

/* Bottom Logo */

.footer-bottom-logo{
    margin-top:45px;
    display:flex;
    justify-content:center;
    align-items:center;
    gap:20px;
}

.footer-bottom-logo span{
    color:#fff;
    font-family:'Cream Cake', cursive;
    font-size:58px;}

.footer-bottom-logo img{
    max-width:90px;
}


@media(max-width:991px){

    .footer-grid{
        grid-template-columns:1fr 1fr;
    }

    .footer-independent{
        text-align:left;
    }

    .footer-newsletter h2{
        font-size:48px;
    }

    .footer-bottom-logo{
        flex-direction:column;
    }

    .footer-newsletter h2 img{
        bottom: 1px;
        right:0px;
    }
}

@media(max-width:767px){

    .footer-grid{
        grid-template-columns:1fr;
        text-align:center;
    }

    .newsletter-form{
        display: block;
        background: transparent;
    }

    .newsletter-form input{
        background-color: #fff;
        margin-bottom:15px;
    }

    .newsletter-form input,
    .newsletter-form button{
        border-radius:40px;
        width:100%;
    }

    .footer-newsletter h2{
        font-size:36px;
    }

    .footer-bottom-logo span{
        font-size:26px;
        text-align:center;
    }

    .footer-independent {
        text-align: center;
    }
    
    .footer-col{
        justify-items: center;
    }
    
    .footer-col ul{
        justify-items: center;
    }
}

/* Sticky reveal footer — main scrolls in front (opaque), footer-main
   is pinned behind it and only reveals in the spacer gap main.js adds
   as margin-bottom (measured from .grafton-footer's real height). */

main{
    position: relative;
    background: #fff;
    z-index: 2;
    padding-top:26px;
}


/* ==========================================================================
   New Slider Hero Section
   ========================================================================== */

.new-hero-slider-section {
  width: 100%;
  position: relative;
  overflow: hidden;
  background: #000;
}

.new-hero-swiper {
  width: 100%;
  height: 100%;
}

.new-hero-swiper .swiper-slide {
  width: 100%;
  /* aspect-ratio: 2560 / 800; */
  overflow: hidden;
}

.new-hero-slide-inner {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.new-hero-slide-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.12);
  opacity: 0;
  will-change: transform, opacity;
}

.new-hero-slide-img.new-hero-css-fallback {
  animation: newHeroKenBurns 6.5s ease-out forwards;
}

@keyframes newHeroKenBurns {
  0% {
    opacity: 0;
    transform: scale(1.12);
  }
  15% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* Pagination */

.new-hero-swiper .new-hero-pagination {
  position: absolute;
  right: clamp(20px, 3vw, 40px);
  left: auto;
  bottom: auto;
  top: 50%;
  width: auto;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  z-index: 5;
}

.new-hero-swiper .new-hero-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ffffff;
  opacity: 0.55;
  margin: 0;
  transition: opacity 0.25s ease, transform 0.25s ease, background 0.25s ease;
}

.new-hero-swiper .new-hero-pagination .swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--ribbon-red);
  transform: scale(1.15);
}

/* Nav arrows */

.new-hero-swiper .new-hero-nav {
  display: none;
}

@media (max-width: 767.98px) {
  /* .new-hero-swiper .swiper-slide {
    aspect-ratio: 16 / 12;
  } */

  .new-hero-swiper .new-hero-pagination .swiper-pagination-bullet{
    width: 9px;
    height: 9px;
    opacity: 1;
  }

  .new-hero-slide-img {
    object-position: center center;
  }

  .new-hero-swiper .new-hero-nav {
    display: none;
  }
}

/* Beer card hover reveal gif */

.beer-card-gif {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.beer-card:hover .beer-card-gif {
  opacity: 1;
}