/*
 * BIRRA PEJA WordPress Theme Styles
 *
 * @package birrapeja-xyz
 * @version 1.0.0
 */
:root {
  --dot-bg: #D6001C;
  --dot-color: rgba(255, 255, 255, 0.12);
  --white-color: #fff;
  --accent: #baad6a;
  --accent2: rgba(150, 150, 150, 0.58);
  --main-red: #D6001C;
  --main-red-2: #D6001C;
  --main-red-3: #D6001C;
  --main-red-4: #8B0000;
  --chill-red: #E71B23;
  --primary-color: #d4af37;
  --secondary-color: #1a1a1a;
  --accent-color: #f4f4f4;
  --text-color: #333;
  --bg-color: #fafafa;
  --card-bg: #ffffff;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  --shadow-hover: 0 20px 60px rgba(0, 0, 0, 0.15);
  --sans: "United Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  --serif: "OggRg", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  --script: "bonvivant", cursive, sans-serif;
  --primary-font-family: "United Sans Rg Md";
  --serif-font-family-bold: "OggBd";
  --script-font-family: var(--script);
  --light: 200;
  --medium: 400;
  --heavy: 600;
  --black: 800;
  /* Text Contrast Colors */
  --text-dark: #595858;
  --text-light: #ffffff;
  --text-gold: #baad6a;
}

/* Text Contrast Utility Classes */
.text-dark,
.text-dark * {
  color: var(--text-dark) !important;
}

.text-light,
.text-light * {
  color: var(--text-light) !important;
}

.text-gold,
.text-gold * {
  color: var(--text-gold) !important;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
/* Lenis Smooth Scrolling Fixes */
html.lenis {
  height: auto;
}
.lenis.lenis-smooth {
  scroll-behavior: auto;
}
.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}
/* Prevent the "nod" effect by stabilizing transforms during scroll state changes */
body.lenis-scrolling,
body.lenis-smooth {
  transform: translateZ(0);
  will-change: transform;
  transition: none;
}
/* Ensure smooth transition when scroll states change */
body {
  transition: transform 0.1s ease-out;
}
body.lenis-scrolling {
  transition: none;
}
@media (prefers-reduced-motion) {
  html {
    scroll-behavior: initial;
  }
  body.lenis-scrolling,
  body.lenis-smooth {
    transition: none;
    will-change: auto;
  }
}
body {
  --grid-tile-size: 20px 17px;
  --grid-feather-shape: ellipse;
  --grid-feather-start: 5%;
  --grid-feather-end: 75%;
  --dot-size: 1px;
  --dot-color: rgba(245, 243, 232, 0.3501);
  --hover-dot-size: 2px;
  --hover-dot-color: rgba(186, 173, 106, 0.61);
  --x: 75%;
  --y: 15%;
  --size: 4%;
  --feather: 10%;
  --click-dot-color: var(--accent);
  /* OLD VERSION - Commented out for Universal Background Field System v2.0 */
  background-color: #D6001C;
  /* NEW VERSION - Dynamic background controlled by flexible content sections */
  /* background: transparent; */
  margin: 0;
  padding: 0;
  width: 100vw;
  max-width: 100vw;
  height: 100vh;
  font-family: var(--sans);
  font-weight: var(--medium);
  color: #fff;
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  scroll-behavior: smooth;
}
/* Dot Grid Background */
body:after,
body:before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9;
  background-size: var(--grid-tile-size);
}
body:before {
  background-image: radial-gradient(circle, var(--dot-color) var(--dot-size), rgba(0, 0, 0, 0) 1px);
  -webkit-mask-image: radial-gradient(var(--grid-feather-shape), rgba(124, 28, 28, 0.25) var(--grid-feather-start), transparent var(--grid-feather-end));
  mask-image: radial-gradient(var(--grid-feather-shape), rgba(109, 10, 10, 0.25) var(--grid-feather-start), transparent var(--grid-feather-end));
  z-index: 9;
}
body:after {
  background-image: radial-gradient(circle, var(--hover-dot-color) var(--hover-dot-size),rgba(126, 12, 12, 0) 1px);
  -webkit-mask-image: radial-gradient(circle at var(--x) var(--y),rgb(116, 8, 8) var(--size),transparent calc(var(--size) + var(--feather)));
  mask-image: radial-gradient(circle at var(--x) var(--y),rgb(144, 6, 6) var(--size), transparent calc(var(--size) + var(--feather)));
  z-index: 9;
}
body > footer {
  position: sticky;
  top: 100vh;
}
/* Custom Cursor */
.curzr {
  position: fixed;
  z-index: 2147483647;
  pointer-events: none;
  will-change: transform;
}
.curzr-dot {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
/* Fix cursor interaction issues with SVG elements */
svg.divider {
  pointer-events: none;
}
svg.divider path {
  pointer-events: none;
}
/* Ensure SVG dividers don't interfere with cursor */
.divider-wrapper {
  pointer-events: none;
  position: relative;
  z-index: 1;
}
/* Allow interaction with clickable SVGs when needed */
svg.interactive {
  pointer-events: auto;
}
svg.interactive path {
  pointer-events: auto;
}

/* 404 Tap Game -------------------------------------------------- */
.keg-404 {
  --beer-gold: #e5c539;
  --beer-amber: #c28b1a;
  --beer-foam: #fff8da;
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 6vw, 4rem);
  align-items: center;
  padding: clamp(2.5rem, 6vw, 5rem);
  min-height: calc(100vh - 120px);
  background: radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.08), transparent 60%), rgba(5, 5, 5, 0.92);
  color: #fff;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.keg-404::after {
  content: "";
  position: absolute;
  inset: auto -10% -30% 10%;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08), transparent 70%);
  filter: blur(20px);
  opacity: 0.7;
  z-index: -1;
}

.keg-404__copy {
  max-width: 720px;
  text-align: center;
  width: 100%;
}

.keg-404__eyebrow {
  font-size: 0.9rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0.9rem;
}

.keg-404__title {
  font-size: clamp(2.25rem, 6vw, 3.5rem);
  margin-bottom: 1rem;
  line-height: 1.1;
}

.keg-404__description {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.keg-404__links {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.keg-404__link {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 999px;
  padding: 0.7rem 1.6rem;
  font-weight: 600;
  text-decoration: none;
  color: #fff;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.keg-404__link:hover,
.keg-404__link:focus-visible {
  border-color: var(--beer-gold);
  color: var(--beer-gold);
}

.keg-404__link--ghost {
  background: rgba(255, 255, 255, 0.08);
  border-color: transparent;
}

.keg-404__link--ghost:hover,
.keg-404__link--ghost:focus-visible {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
}

.keg-404__game {
  width: 100%;
  max-width: 900px;
  border-radius: 24px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.12);
  overflow: visible;
}

/* Hero Background - Smart Hero System v3.0 */
.hero-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 0;
  transition: all 0.6s ease;
  opacity: 1;
}
/* Hide hero completely when scrolled past hero section */
.hero-bg.hero-scrolled-past {
  opacity: 0 !important;
  pointer-events: none;
}
/* When hero is inactive, hide it completely */
.hero-bg[data-hero-active="false"] {
  display: none !important;
  pointer-events: none;
}
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(66, 0, 0, 0.15) 0%, rgba(99, 0, 0, 0.45) 33%, rgba(125, 0, 18, 0.65) 66%, rgba(139, 0, 0, 1) 100%);
  z-index: 2;
  mix-blend-mode: normal;
  transition: mix-blend-mode 0.3s ease;
  isolation: isolate;
}
.hero-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/bp_factory_001.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}
/* Fallback body styling when no hero background is present */
body {
  background-color: #D6001C;
  transition: background-color 0.6s ease;
}
/* Main Header */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(0,0,0,0.25);
  box-shadow: 20px 20px 40px -6px rgba(0,0,0,0.2);
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
  transition: all 0.25s ease-in-out;
}
.main-header.hide {
  transform: translateY(-100%);
}
.nav-bar {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  position: relative;
}
.logo {
  margin: 10px 0px;
  height: 80px;
  width: auto;
}
.navigation ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 2rem;
  background: transparent;
  transition: all 0.25s ease-in-out;
}
.navigation a {
  position: relative;
  display: inline-block;
  font-size: 1rem;
  font-weight: 300;
  color: #fff;
  text-decoration: none;
  font-family: var(--sans);
  font-weight: var(--medium);
  letter-spacing: 0.05em;
  transition: color 0.2s;
  padding: 3px 0px;
}
.navigation a:after,
.navigation a:before {
  content: "";
  position: absolute;
  top: calc(100% - 5px);
  width: 0;
  right: 0;
  height: 3px;
}
.navigation a:after {
  transition: width 0.25s cubic-bezier(0.29, 0.18, 0.26, 0.83);
  background: rgb(125, 0, 18);
}
.navigation a:before {
  transition: width 0.5s cubic-bezier(0.51, 0.18, 0, 0.88) 0.1s;
  background: var(--accent);
}
.navigation a:hover:after,
.navigation a:hover:before {
  width: 100%;
  left: 0;
}
.menu-btn {
  display: none;
}
.menu-icon {
  display: none;
  padding: 28px 20px;
  position: absolute;
  right: 1rem;
  user-select: none;
  z-index: 2;
}
.menu-icon .navicon {
  background: #fff;
  display: block;
  height: 2px;
  width: 18px;
  position: relative;
  transition: all 0.4s ease;
}
.menu-icon .navicon:before,
.menu-icon .navicon:after {
  content: '';
  background: #fff;
  display: block;
  height: 100%;
  width: 100%;
  position: absolute;
  transition: all 0.2s ease-out;
}
.menu-icon .navicon:before {
  top: 5px;
}
.menu-icon .navicon:after {
  top: -5px;
}
.menu-btn:checked ~ .navigation .menu {
  /* max-height: 300px; */
  flex-direction: column;
}
.menu-btn:checked ~ .menu-icon .navicon {
  background: transparent;
}
.menu-btn:checked ~ .menu-icon .navicon:before {
  transform: rotate(-45deg);
  top: 0;
}
.menu-btn:checked ~ .menu-icon .navicon:after {
  transform: rotate(45deg);
  top: 0;
}
/* Global Responsive Fixes */
@media (max-width: 1024px) {
  .container {
    padding: 0 1.5rem;
  }
  section {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .section-title.xl {
    font-size: clamp(4.5rem, 10vw, 10rem);
  }
  .section-title.l {
    font-size: clamp(3.5rem, 7vw, 7rem);
  }
  .section-title.m {
    font-size: clamp(1.5rem, 5vw, 3rem);
  }
}
@media (max-width: 768px) {
  /* Global Mobile Styles */
  .container {
    padding: 0 1rem;
  }
  section {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  /* Typography Mobile Fixes */
  .section-title {
    line-height: 1.1;
    word-break: break-word;
    overflow-wrap: break-word;
  }
  .section-title.xl {
    font-size: clamp(3rem, 12vw, 6rem);
    line-height: 1;
  }
  .section-title.l {
    font-size: clamp(2.5rem, 10vw, 5rem);
    line-height: 1.05;
  }
  .section-title.m {
    font-size: clamp(1.25rem, 8vw, 2.5rem);
    line-height: 1.2;
  }
  .sub-title{
    /* letter-spacing: 0.025em !important; */
  }
  /* Navigation Mobile */
  .navigation .menu {
    /* max-height: 0; */
    overflow: hidden;
    flex-direction: column;
    background: rgba(255, 255, 255, 1);
    color: var(--main-red);
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    transform: translateY(-10px);
    opacity: 0;
    display: none;
    width: 100%;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 10;
    transition: all 0.3s ease;
  }
  .navigation a{
    color: var(--main-red);
  }
  .menu-btn:checked ~ .navigation .menu {
    /* max-height: 300px; */
    transform: translateY(0);
    opacity: 1;
    display: flex;
  }
  .navigation ul li {
    text-align: center;
    padding: 10px 0;
  }
  .menu-icon {
    display: block;
  }
  .navigation {
    width: 100%;
  }
  .logo {
    height: 60px;
  }
  /* Text Alignment Mobile */
  .text-align-right{
    text-align: center !important;
  }
}
@media (max-width: 480px) {
  /* Small Mobile Styles */
  .container {
    padding: 0 0.75rem;
  }
  section {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .section-title.xl {
    font-size: clamp(1.75rem, 12vw, 3.5rem);
    line-height: 0.95;
  }
  .section-title.l {
    font-size: clamp(1.5rem, 10vw, 3rem);
    line-height: 1;
  }
  .section-title.m {
    font-size: clamp(1.125rem, 8vw, 2rem);
    line-height: 1.15;
  }
  .logo {
    height: 50px;
  }
  .nav-bar {
    padding: 0.75rem 1rem;
  }
}
/* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  z-index: 10;
}
/* Typography */
.section-title {
  font-family: var(--serif);
  font-weight: var(--black);
  line-height: 1.1;
  margin: 0;
  position: relative;
  /* letter-spacing: 0.0755em; */
  word-wrap: break-word;
  hyphens: auto;
  text-transform: uppercase;
}
.section-title.xl {
  font-size: clamp(3rem, 12vw, 12rem);
  line-height: 0.95;
}
.section-title.l {
  font-size: clamp(3.5rem, 7vw, 7rem);
  line-height: 1;
}
.section-title.m {
  font-size: clamp(1rem, 4vw, 4rem);
  line-height: 1.2;
  font-weight: var(--heavy);
}
.sub-title {
  font-family: var(--script);
  font-weight: var(--light);
  font-size: clamp(1.5rem, 4vw, 1.75rem);
  color: var(--accent);
  /* letter-spacing: 0.1em; */
  width: 100%;
  display: block;
  margin-bottom: 0;
  margin-top: 0;
}
.above-title {
  font-family: var(--sans);
  font-weight: var(--light);
  font-size: 2rem;
  color: var(--accent);
  /* letter-spacing: 0.1em; */
  width: 100%;
  display: block;
  margin-bottom: 0;
}
/* Text Alignment Utilities */
.text-align-right {
  text-align: right !important;
}
.text-align-left {
  text-align: left !important;
}
.text-align-center {
  text-align: center !important;
}
/* Main Content */
main {
  position: relative;
  z-index: 10;
}
/* Section Spacing */
section {
  padding-top: 4rem !important;
  padding-bottom: 4rem !important;
}
.my-xl {
  margin: 4rem 0 !important;
}
/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
/* Section Header */
.section-header {
  margin-bottom: 4rem;
  position: relative;
}
/* Story Section */
.our-story-section {
  position: relative;
  z-index: 10;
  padding: 4rem 0;
}
.story-flex {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  justify-items: center;
  justify-content: center;
}
.story-img-wrapper {
  width: 100%;
  max-width: 500px;
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: 12px;
}
.story-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.story-img-wrapper:hover img {
  transform: scale(1.05);
}
.story-text {
  width: 100%;
  max-width: 600px;
  /* padding: 2rem; */
}
.story-text h3 {
  margin-bottom: 2rem;
  word-wrap: break-word;
  hyphens: auto;
  line-height: 1.2;
}
.story-text p {
  font-family: var(--sans);
font-weight: var(--light);
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  word-wrap: break-word;
  hyphens: auto;
}
/* Responsive Story Section */
@media (max-width: 1200px) {
  .story-flex {
    gap: 3rem;
  }
  .story-text {
    padding: 1.5rem;
  }
  .story-text h3 {
    font-size: clamp(1.75rem, 4vw, 3rem);
  }
}
@media (max-width: 768px) {
  .our-story-section {
    padding: 3rem 0;
  }
  .story-flex {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  .story-img-wrapper {
    max-width: 100%;
    aspect-ratio: 4/3;
    order: 1;
  }
  .story-text {
    padding: 1rem;
    order: 2;
  }
  .story-text h3 {
    font-size: clamp(1.5rem, 6vw, 2.5rem);
    margin-bottom: 1.5rem;
    line-height: 1.3;
  }
  .story-text p {
    font-size: 1rem;
    line-height: 1.6;
  }
  /* Ensure proper order for image_right layout */
  .story-flex.image_right .story-text {
    order: 1;
  }
  .story-flex.image_right .story-img-wrapper {
    order: 2;
  }
}
@media (max-width: 480px) {
  .our-story-section {
    padding: 2rem 0;
  }
  .story-flex {
    gap: 1.5rem;
  }
  .story-img-wrapper {
    aspect-ratio: 16/10;
    border-radius: 8px;
  }
  .story-text {
    padding: 0.5rem;
  }
  .story-text h3 {
    font-size: clamp(1.25rem, 8vw, 2rem);
    margin-bottom: 1rem;
    line-height: 1.2;
    word-break: break-word;
  }
  .story-text p {
    font-size: 0.95rem;
    line-height: 1.5;
  }
}
/* Image Crop Effect */
.img-crop {
  overflow: hidden;
  border-radius: 8px;
}
.img-crop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.51, 0.54, 0.28, 0.81);
}
.img-crop:hover img {
  transform: scale(1.05) !important;
}
/* Responsive image utility class */
.img-responsive {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* Fix for featured news image */
.featured-news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* Fix for news card image */
.news-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* Scale Effect */
.scale-s,
.scale-s img {
  transition: transform 0.5s cubic-bezier(0.51, 0.54, 0.28, 0.81);
}
.scale-s:hover,
.scale-s:hover img {
  transform: scale(1.05) !important;
}
/* With Written Pseudo Elements */
.with-written {
  position: relative;
}
.with-written--above:before {
  content: attr(data-written);
  position: absolute;
  top: -2rem;
  left: 0;
  font-family: var(--sans);
font-weight: var(--light);
  font-size: 2rem;
  color: rgba(255, 255, 255, 0.7);
  /* letter-spacing: 0.05em; */
  text-align: var(--written-align, center);
  width: 100%;
  display: block;
}
.with-written--below:after {
  content: attr(data-written);
  width: 100%;
  display: block;
  font-family: var(--sans);
font-weight: var(--light);
  font-size: 2rem;
  color: rgba(255, 255, 255, 0.7);
  /* letter-spacing: 0.05em; */
  text-align: var(--written-align, center);
  margin-top: -2%;
}
.with-written[data-written-align="left"] {
  --written-align: left;
}
.with-written[data-written-align="center"] {
  --written-align: center;
}
.with-written[data-written-align="right"] {
  --written-align: right;
}
/* Inspiration Section */
.inspiration-section {
  position: relative;
  z-index: 10;
  padding: 4rem 0;
}
.insp-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.insp-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  transition: all 0.5s cubic-bezier(0.51, 0.54, 0.28, 0.81);
}
.insp-item {
  position: relative;
  font-family: var(--serif);
font-weight: var(--black);
  font-size: clamp(1.5rem, 4vw, 3rem);
  font-weight: 800;
  transition: all 0.5s cubic-bezier(0.51, 0.54, 0.28, 0.81);
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: row;
  align-content: center;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  word-wrap: break-word;
  hyphens: auto;
  line-height: 1.2;
}
.insp-item:after {
  content: attr(data-written);
  font-family: var(--sans);
font-weight: var(--light);
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  /* letter-spacing: 0.15em; */
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(0.51, 0.54, 0.28, 0.81);
  vertical-align: middle;
  display: inline;
  width: auto;
  text-align: var(--written-align, right);
}
.insp-item[data-written-align="left"]:after {
  --written-align: left;
  right: auto;
  left: 0;
}
.insp-item[data-written-align="center"]:after {
  --written-align: center;
  left: 50%;
  right: auto;
  transform: translate(-50%, -50%);
}
.insp-item[data-written-align="right"]:after {
  --written-align: right;
}
.insp-item:hover:after,
.insp-item.active:after {
  opacity: 1;
}
.insp-item:before {
  content: "";
  position: absolute;
  left: -2rem;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 10px solid var(--accent);
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.51, 0.54, 0.28, 0.81);
}
.insp-item.active:before {
  opacity: 1;
}
.insp-item.active {
  color: var(--accent);
}
.insp-item:hover {
  color: var(--accent);
  transform: translateX(1rem);
}
.insp-image {
  height: 500px;
  transition: all 0.5s cubic-bezier(0.51, 0.54, 0.28, 0.81);
}
.insp-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* Expertises Section */
.expertises-section {
  position: relative;
  z-index: 10;
  padding: 4rem 0;
}
.exp-content {
  display: block;
}
.exp-flex {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.exp-imagebox {
  height: 500px;
  border-radius: 12px;
  overflow: hidden;
}
.exp-imagebox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.exp-imagebox:hover img {
  transform: scale(1.05);
}
.exp-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.exp-item {
  position: relative;
  font-family: var(--serif);
font-weight: var(--black);
  font-size: clamp(1.5rem, 4vw, 3rem);
  transition: all 0.5s ease;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
  word-wrap: break-word;
  hyphens: auto;
  line-height: 1.2;
}
.exp-item:after {
  content: attr(data-written);
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--script);
font-weight: var(--light);
  font-size: clamp(1rem, 3.5vw, 2.5rem) !important;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.025em;
  /* text-transform: uppercase; */
  opacity: 0;
  transition: opacity 0.3s ease;
  display: inline;
  width: auto;
  text-align: var(--written-align, right);
}
.exp-item[data-written-align="left"]:after {
  --written-align: left;
  right: auto;
  left: 0;
}
.exp-item[data-written-align="center"]:after {
  --written-align: center;
  left: 50%;
  right: auto;
  transform: translate(-50%, -50%);
}
.exp-item[data-written-align="right"]:after {
  --written-align: right;
}
.exp-item:hover:after,
.exp-item.active:after {
  opacity: 1;
}
.exp-item:before {
  content: "";
  position: absolute;
  left: -2rem;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 10px solid var(--accent);
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  opacity: 0;
  transition: opacity 0.3s cubic-bezier(0.51, 0.54, 0.28, 0.81);
}
.exp-item.active {
  color: var(--accent);
}
.exp-item.active:before {
  opacity: 1;
}
.exp-item:hover {
  color: var(--accent);
  transform: translateX(1rem);
}
/* News Section */
.whats-new-section {
  position: relative;
  z-index: 10;
}
/* .whats-new-side h2 {
  letter-spacing: 0.05em;
  font-size: clamp(4rem, 8vw, 8rem) !important;
} */
.whats-new-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: start;
}
.news-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.news-item {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 2rem;
  align-items: center;
}
.news-item:not(:last-of-type) {
  border-bottom: 1px solid var(--accent);
  padding-bottom: 15px;
}
.news-img {
  height: 120px;
  overflow: hidden;
  border-radius: 8px;
}
.news-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.news-title {
  font-family: var(--serif);
font-weight: var(--medium);
  /* font-size: 1.5rem; */
  margin-bottom: 1rem;
  line-height: 1.3;
}
.news-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}
.news-title a:hover {
  color: var(--accent);
}
.news-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.news-date {
  font-family: var(--sans);
font-weight: var(--light);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}
.news-link {
  color: var(--accent);
  text-decoration: none;
  font-family: var(--sans);
font-weight: var(--medium);
  font-size: 0.9rem;
  /* letter-spacing: 0.05em; */
  transition: color 0.3s ease;
}
.news-link:hover {
  color: #fff;
}
.see-all {
  color: var(--accent);
  text-decoration: none;
  font-family: var(--sans);
font-weight: var(--medium);
  font-size: 1.1rem;
  /* letter-spacing: 0.05em; */
  text-transform: uppercase;
  transition: color 0.3s ease;
  align-self: flex-start;
  margin-top: 2rem;
}
.see-all:hover {
  color: #fff;
}
/* ======================
      BRANDS SLIDER
====================== */
.swiper-wrapper{
  align-content: flex-end;
	align-items: flex-end;
}
.brands-horizontal-wrapper {
  position: relative;
  padding: 3rem 0;
  overflow: hidden;
}
.brands-section-header {
  text-align: center;
  margin-bottom: 2rem;
}
.brands-categories {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: nowrap;
  overflow-x: auto;
  scrollbar-width: none; /* hide scrollbar */
}
.brands-categories::-webkit-scrollbar { display: none; }
.category-btn {
  background: none;
  border: none;
  font-size: 1rem;
  text-transform: uppercase;
  /* letter-spacing: 1px; */
  color: var(--white-color, #fff);
  cursor: pointer;
  padding: 0.5rem 1rem;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.category-btn.active,
.category-btn:hover {
  border-bottom: 1px solid var(--accent, #b09d6d);
  color: var(--accent, #b09d6d);
}
.category-btn.active{
  border-bottom: 2px solid var(--accent, #b09d6d);
}
.brands-slider-container {
  position: relative;
  display: flex;
  align-items: center;
}
.brands-scroll-container {
  display: flex;
  flex-direction: row;
  gap: 30px;
  padding: 24px 14px;
  width: max-content;
  touch-action: pan-x;
  user-select: none;
  will-change: transform;
  cursor: grab;
}
.brand-slide {
  flex: 0 0 450px;
  text-align: center;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center bottom;
  position: relative;
}
.brand-slide a {
  text-decoration: none;
  color: inherit;
}
.brand-slide-img {
  width: 100%;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.brand-slide-img img {
  max-height: 380px;
  max-width: 100%;
  transition: transform 0.3s ease;
}
.brand-slide-title {
  position: absolute;
  bottom: 5%;
  left: 50%;
  transform: translateX(-50%);
  font-size: 3.5rem;
  font-family: var(--serif);
font-weight: var(--black);
  color: var(--accent, #b09d6d);
  text-shadow: 0px 0px 10px rgba(0,0,0,0.15);
  pointer-events: none;
}
.brand-slide.active img {
  transform: scale(1.025);
}
/* Clone slides for infinite carousel */
.brand-slide.clone {
  pointer-events: auto;
}
/* Arrows */
/* .slider-nav {
  background: rgba(240, 240, 240, 0.05);
  border: 1px solid white;
  color: #fff;
  width: 55px;
  height: 55px;
  opacity: 0.4;
  cursor: pointer;
  z-index: 2222;
  border-radius: 50%;
  transition: background 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
} */
/* .slider-nav:hover { background: rgba(0,0,0,0.6); opacity: 1; }
@media (max-width: 768px) {
  .slider-nav { transform: scale(0.75); }
} */
/* .slider-nav.prev {
  position: absolute;
  left: 15%;
  top: 50%;
  transform: translateY(-50%);
}
.slider-nav.next {
  position: absolute;
  right: 15%;
  top: 50%;
  transform: translateY(-50%);
} */
/* Desaturation for non-matching slides */
.brand-slide.dimmed img {
  filter: grayscale(100%) opacity(0.6);
  transition: filter 0.3s ease;
}
/* Categories scroll hint */
.brands-categories.hint-animate {
  scroll-behavior: smooth;
}
/* Responsive Brands Section */
@media (max-width: 1024px) {
  .brand-slide {
    /* flex: 0 0 350px; */
  }
  .brand-slide-title {
    font-size: 3.5rem;
  }
  .brands-categories {
    gap: 1rem;
  }
}
@media (max-width: 768px) {
  .brand-slide {
    /* flex: 0 0 280px; */
    max-width: 90vw;
  }
  .brand-slide-img {
    height: 100%;
  }
  .brand-slide-title {
    font-size: clamp(2rem, 6vw, 3rem);
  }
  .brands-categories {
    justify-content: flex-start;
    padding: 0 1rem;
    gap: 0.5rem;
    overflow-x: auto;
    scrollbar-width: none;
  }
  .brands-categories::-webkit-scrollbar {
    display: none;
  }
  .category-btn {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
    white-space: nowrap;
    flex-shrink: 0;
  }
  .slider-nav {
    width: 45px;
    height: 45px;
  }
  .slider-nav.prev {
    left: 5%;
  }
  .slider-nav.next {
    right: 5%;
  }
}
@media (max-width: 480px) {
  .brands-horizontal-wrapper .brands-slider-container .swiper{
    padding: 3rem 0;
  }
  .brand-slide {
    /* flex: 0 0 250px; */
  }
  .brand-slide-img {
    height: 100%;
  }
  .brand-slide-title {
    font-size: clamp(2rem, 12vw, 3.5rem);
    bottom: -15%;
    letter-spacing: 0.35rem;
  }
  .brands-categories {
    padding: 0 0.5rem;
    gap: 0.25rem;
  }
  .category-btn {
    font-size: 0.75rem;
    padding: 0.3rem 0.6rem;
  }
  .slider-nav {
    width: 40px;
    height: 40px;
  }
}
.faded {
  position: relative;
  display: inline-block;
  color: white;
}
.faded:after {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-collapse: separate;
}
.faded.faded-left:after {
  box-shadow: inset 40px 0 40px -16px;
}
.faded.faded-right:after {
  box-shadow: inset -40px 0 40px -16px;
}
/* Dividers */
.divider {
  max-width: 95dvw;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  z-index: 20;
  position: relative;
}
/* Footer */
footer {
  background: #b20017;
  padding: 3rem 0 1.5rem;
  z-index: 9;
  position: relative;
}
.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  align-items: center;
  margin-bottom: 2rem;
}
/* Footer Logo Section */
.footer-logo {
  display: flex;
	align-items: flex-start;
	flex-direction: column;
  gap: 1rem;
}
.footer-logo img {
  max-width: 250px;
  width: 100%;
  height: auto;
  transition: opacity 0.3s ease;
}
.footer-logo img:hover {
  opacity: 0.8;
}
/* Footer Social Media */
.footer-social {
  display: flex;
  justify-content: center;
  align-items: center;
}
.social-links {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}
.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--white-color);
  text-decoration: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.social-link:hover {
  background: var(--accent);
  color: var(--main-red);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}
.social-link i {
  font-size: 1.2rem;
}
/* Footer Regulatory/Company Info */
/* .footer-regulatory {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
  font-family: var(--sans);
  font-weight: var(--light);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.4;
}
.footer-regulatory .company-name {
  font-weight: var(--medium);
  color: var(--accent);
  margin-bottom: 0.25rem;
}
.footer-regulatory .regulatory-info {
  margin-bottom: 0.25rem;
} */
/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1rem;
  align-items: center;
}
.footer-copyright {
  font-family: var(--sans);
  font-weight: var(--light);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}
.footer-disclaimer {
  text-align: right;
  font-family: var(--serif);
  font-weight: var(--medium);
  font-size: 1rem;
  color: var(--accent);
  letter-spacing: 0.05em;
}
/* Responsive Footer */
@media (max-width: 1024px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  .footer-logo {
    justify-content: center;
    order: 1;
  }
  .footer-social {
    order: 2;
  }
  .footer-regulatory {
    align-items: center;
    text-align: center;
    order: 3;
  }
  .footer-bottom {
    grid-template-columns: 1fr;
    gap: 1rem;
    text-align: center;
  }
  .footer-disclaimer {
    text-align: center;
  }
}
@media (max-width: 768px) {
  footer {
    padding: 2rem 0 1rem;
  }
  .footer-content {
    gap: 1.5rem;
  }
  .social-links {
    gap: 1rem;
  }
  .social-link {
    width: 40px;
    height: 40px;
  }
  .social-link i {
    font-size: 1.1rem;
  }
  .footer-logo img {
    max-width: 120px;
  }
  /* .footer-regulatory {
    font-size: 0.8rem;
  } */
  .footer-bottom {
    padding-top: 1rem;
    gap: 0.75rem;
  }
  .footer-copyright,
  .footer-disclaimer {
    font-size: 0.8rem;
  }
}
@media (max-width: 480px) {
  footer {
    padding: 1.5rem 0 0.75rem;
  }
  .footer-content {
    gap: 1rem;
  }
  .social-links {
    gap: 0.75rem;
  }
  .social-link {
    width: 35px;
    height: 35px;
  }
  .social-link i {
    font-size: 1rem;
  }
  .footer-logo img {
    max-width: 100px;
  }
  /* .footer-regulatory {
    font-size: 0.75rem;
  } */
  .footer-bottom {
    padding-top: 0.75rem;
    gap: 0.5rem;
  }
  .footer-copyright,
  .footer-disclaimer {
    font-size: 0.75rem;
  }
}
/* Reveal on Scroll */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(56px);
}
/* Performance Optimizations */
.img-crop img,
.curzr,
.main-header,
.single-product-image,
.next-product-image-container {
  will-change: transform;
}
/* Product styles moved to modern-product.css */
/* All product-specific styles moved to modern-product.css */
/* ===============================
   NEWS & ARCHIVE STYLES
=============================== */
/* News Archive Page */
.news-archive {
  background: linear-gradient(135deg, var(--primary-dark, #1a1a1a), var(--bg-dark, #0d1117));
  position: relative;
  z-index: 10;
}
.archive-hero {
  padding: 8rem 0 4rem;
  position: relative;
}
.archive-header {
  text-align: center;
  margin-bottom: 4rem;
}
.archive-title {
  color: var(--white-color);
  margin-bottom: 1rem;
}
.archive-description {
  font-family: var(--sans);
font-weight: var(--light);
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}
/* Featured News */
.featured-news {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 4rem;
}
.featured-news-image {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  aspect-ratio: 16/10;
}
.featured-news-content {
  padding: 2rem 0;
}
.featured-news-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}
.featured-news-title {
  font-family: var(--serif);
font-weight: var(--black);
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: var(--white-color);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}
.featured-news-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}
.featured-news-title a:hover {
  color: var(--accent);
}
.featured-news-excerpt {
  font-family: var(--sans);
font-weight: var(--light);
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 2rem;
}
.featured-news-link {
  color: var(--accent);
  text-decoration: none;
  font-family: var(--serif);
font-weight: var(--medium);
  font-size: 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.featured-news-link:hover {
  color: var(--white-color);
}
/* News Filter */
.news-filter {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 4rem;
  flex-wrap: wrap;
}
.filter-btn {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: var(--white-color);
  padding: 0.75rem 1.5rem;
  font-family: var(--sans);
font-weight: var(--medium);
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--main-red);
}
/* News Grid */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}
.news-card {
  background: rgba(26, 26, 26, 0.6);
  border-radius: 15px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  transition: all 0.3s ease;
}
.news-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}
.news-card-image {
  position: relative;
  aspect-ratio: 16/10;
}
.news-card-content {
  padding: 1.5rem;
}
.news-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.news-card-title {
  font-family: var(--serif);
font-weight: var(--medium);
  font-size: 1.25rem;
  margin-bottom: 1rem;
  line-height: 1.3;
}
.news-card-title a {
  color: var(--white-color);
  text-decoration: none;
  transition: color 0.3s ease;
}
.news-card-title a:hover {
  color: var(--accent);
}
.news-card-excerpt {
  font-family: var(--sans);
font-weight: var(--light);
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.news-card-link {
  color: var(--accent);
  text-decoration: none;
  font-family: var(--sans);
font-weight: var(--medium);
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.news-card-link:hover {
  color: var(--white-color);
}
.news-card-link svg {
  width: 14px;
  height: 14px;
  transition: transform 0.3s ease;
}
.news-card-link:hover svg {
  transform: translateX(3px);
}
/* Load More Button */
.news-pagination {
  text-align: center;
  margin-top: 3rem;
}
.load-more-btn {
  background: transparent;
  border: 2px solid var(--accent);
  color: var(--accent);
  padding: 1rem 2rem;
  font-family: var(--sans);
font-weight: var(--medium);
  font-size: 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.load-more-btn:hover {
  background: var(--accent);
  color: var(--main-red);
}
/* Newsletter Section */
.newsletter-section {
  background: rgba(26, 26, 26, 0.6);
  padding: 4rem 0;
  /* margin-top: 4rem; */
}
.newsletter-content {
  	display: flex;
	translate: none;
	rotate: none;
	scale: none;
	transform: translate(0px, 0px);
	opacity: 1;
	flex-direction: column;
	flex-wrap: nowrap;
	align-content: center;
	align-items: center;
	justify-content: center;
  text-align: center;
  margin: 0 auto;
}
.newsletter-title {
  color: var(--white-color);
  margin-bottom: 1rem;
}
.newsletter-description {
  font-family: var(--sans);
font-weight: var(--light);
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
  line-height: 1.6;
}
.newsletter-form .form-group {
  display: flex;
  gap: 1rem;
  max-width: 400px;
  margin: 0 auto;
}
.newsletter-form input[type="email"] {
  flex: 1;
  padding: 1rem;
  border: 2px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white-color);
  border-radius: 8px;
  font-family: var(--sans);
font-weight: var(--light);
  transition: border-color 0.3s ease;
}
.newsletter-form input[type="email"]:focus {
  outline: none;
  border-color: var(--accent);
}
.newsletter-form input[type="email"]::placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.newsletter-btn {
  background: var(--accent);
  border: none;
  color: var(--main-red);
  padding: 1rem 1.5rem;
  font-family: var(--sans);
font-weight: var(--medium);
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.newsletter-btn:hover {
  background: var(--white-color);
}
/* Single News Page Enhancements */
.single-news-article {
  position: relative;
  z-index: 10;
}
section.news-hero{
  padding:0;
}
.news-hero {
  padding: 8rem 0 4rem !important;
  position: relative;
}
.news-breadcrumb {
  margin-bottom: 2rem;
  font-family: var(--sans);
font-weight: var(--light);
  font-size: 0.9rem;
}
.news-breadcrumb a {
  color: var(--accent);
  text-decoration: none;
}
.news-breadcrumb .separator {
  color: rgba(255, 255, 255, 0.5);
  margin: 0 0.5rem;
}
.news-breadcrumb .current {
  color: rgba(255, 255, 255, 0.7);
}
.news-meta-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.news-date {
  font-family: var(--sans);
font-weight: var(--light);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}
.news-categories {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.news-category-tag {
  background: var(--accent);
  color: var(--main-red);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  text-decoration: none;
  font-family: var(--sans);
font-weight: var(--medium);
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all 0.3s ease;
}
.news-category-tag:hover {
  background: var(--white-color);
}
/* .news-title {
  font-family: var(--serif);
font-weight: var(--black);
  font-size: clamp(2.5rem, 6vw, 5rem);
  color: var(--white-color);
  margin-bottom: 1.5rem;
  line-height: 1.1;
} */
.news-excerpt {
  font-family: var(--sans);
font-weight: var(--light);
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 800px;
}
.news-featured-image {
  max-height: 50vh;
  height: 100%;
  margin-top: 3rem;
  border-radius: 12px;
  overflow: hidden;
}
.news-content {
  padding: 4rem 0;
}
.news-content-wrapper {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
  align-items: start;
}
.news-main-content {
  background: rgba(26, 26, 26, 0.6);
  padding: 3rem;
  border-radius: 15px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.entry-content {
  font-family: var(--sans);
font-weight: var(--light);
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
}
.entry-content h2,
.entry-content h3,
.entry-content h4 {
  font-family: var(--serif);
font-weight: var(--medium);
  color: var(--accent);
  margin: 2rem 0 1rem;
}
.entry-content p {
  margin-bottom: 1.5rem;
}
.entry-content a {
  color: var(--accent);
  text-decoration: underline;
  transition: color 0.3s ease;
}
.entry-content a:hover {
  color: var(--white-color);
}
.entry-content img{
 	max-height: 50vh;
  margin-bottom: 15px;
}
.news-tags {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.news-tags h4 {
  font-family: var(--sans);
font-weight: var(--medium);
  color: var(--white-color);
  margin-bottom: 1rem;
  font-size: 1rem;
}
.tags-list {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.tag-item {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white-color);
  padding: 0.25rem 0.75rem;
  border-radius: 15px;
  text-decoration: none;
  font-family: var(--sans);
font-weight: var(--light);
  font-size: 0.8rem;
  transition: all 0.3s ease;
}
.tag-item:hover {
  background: var(--accent);
  color: var(--main-red);
}
.news-share {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.news-share h4 {
  font-family: var(--sans);
font-weight: var(--medium);
  color: var(--white-color);
  margin-bottom: 1rem;
  font-size: 1rem;
}
.share-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.share-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white-color);
  padding: 0.75rem 1rem;
  border-radius: 8px;
  text-decoration: none;
  font-family: var(--sans);
font-weight: var(--light);
  font-size: 0.9rem;
  transition: all 0.3s ease;
}
.share-btn:hover {
  background: var(--accent);
  color: var(--main-red);
}
.share-btn svg {
  width: 20px;
  height: 20px;
}
/* Sidebar */
.news-sidebar {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.widget {
  background: rgba(26, 26, 26, 0.6);
  padding: 20px;
  border-radius: 15px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.widget-title {
  font-family: var(--serif);
font-weight: var(--medium);
  color: var(--accent);
  padding-bottom: 1.5rem;
  font-size: 1.25rem;
  border-bottom: 1px wavy var(--chill-red);
}
.related-news-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.related-news-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.related-news-image {
  flex-shrink: 0;
  width: 80px;
  height: 60px;
  border-radius: 8px;
  overflow: hidden;
}
.related-news-content {
  flex: 1;
}
.related-news-title {
  font-family: var(--serif);
font-weight: var(--medium);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}
.related-news-title a {
  color: var(--white-color);
  text-decoration: none;
  transition: color 0.3s ease;
}
.related-news-title a:hover {
  color: var(--accent);
}
.related-news-date {
  font-family: var(--sans);
font-weight: var(--light);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.8rem;
}
.news-categories-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.news-categories-list li {
  margin-bottom: 0.5rem;
}
.news-categories-list a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-family: var(--sans);
font-weight: var(--light);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: color 0.3s ease;
}
.news-categories-list a:hover {
  color: var(--accent);
}
.category-count {
  font-size: 0.8rem;
  opacity: 0.6;
}
/* Navigation */
.news-navigation {
  background: rgba(26, 26, 26, 0.6);
  padding: 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.news-nav-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.news-nav-item {
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  transition: all 0.3s ease;
}
.news-nav-item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}
.news-nav-next {
  text-align: right;
}
.nav-label {
  font-family: var(--sans);
font-weight: var(--light);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: block;
  margin-bottom: 0.5rem;
}
.nav-title {
  margin: 0;
}
.nav-title a {
  color: var(--white-color);
  text-decoration: none;
  font-family: var(--serif);
font-weight: var(--medium);
  font-size: 1.1rem;
  line-height: 1.3;
  transition: color 0.3s ease;
}
.nav-title a:hover {
  color: var(--accent);
}
/* No News State */
.no-news {
  text-align: center;
  padding: 4rem 2rem;
  grid-column: 1 / -1;
}
.no-news h3 {
  font-family: var(--serif);
font-weight: var(--medium);
  color: var(--accent);
  margin-bottom: 1rem;
  font-size: 1.5rem;
}
.no-news p {
  font-family: var(--sans);
font-weight: var(--light);
  color: rgba(255, 255, 255, 0.7);
}
/* Responsive Design */
@media (max-width: 1024px) {
  .featured-news {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .news-content-wrapper {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .news-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}
@media (max-width: 768px) {
  .archive-hero,
  .news-hero {
    padding: 6rem 0 3rem;
  }
  .featured-news-title,
  .news-title {
    font-size: clamp(2rem, 8vw, 3rem);
  }
  .news-filter {
    gap: 0.5rem;
  }
  .filter-btn {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
  }
  .news-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .news-main-content {
    padding: 2rem;
  }
  .newsletter-form .form-group {
    flex-direction: column;
  }
  .news-nav-wrapper {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .news-nav-next {
    text-align: left;
  }
  .share-buttons {
    justify-content: center;
  }
  .news-meta-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
}
@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }
  .archive-hero,
  .news-hero {
    padding: 5rem 0 2rem;
  }
  .featured-news-content,
  .news-main-content {
    padding: 1.5rem;
  }
  .news-card-content {
    padding: 1rem;
  }
  .widget {
    padding: 1.5rem;
  }
  .related-news-item {
    flex-direction: column;
    gap: 0.5rem;
  }
  .related-news-image {
    width: 100%;
    height: 120px;
  }
  .share-buttons {
    flex-direction: column;
  }
}
/* Additional Responsive Fixes for Main Sections */
@media (max-width: 1024px) {
  /* Inspiration & Expertises Sections */
  .insp-content,
  .exp-flex {
    gap: 3rem;
  }
  .insp-image,
  .exp-imagebox {
    height: 400px;
  }
  .insp-item,
  .exp-item {
    font-size: clamp(1.25rem, 3.5vw, 2.5rem);
    padding: 0.75rem 0;
  }
}
@media (max-width: 768px) {
  /* Inspiration & Expertises Mobile Layout */
  .insp-content,
  .exp-flex {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  .insp-image,
  .exp-imagebox {
    height: 300px;
    order: 1;
    border-radius: 8px;
  }
  .insp-list,
  .exp-list {
    order: 2;
    gap: 1.5rem;
  }
  .insp-item,
  .exp-item {
    font-size: clamp(1.125rem, 5vw, 2rem);
    padding: 0.75rem 0;
    text-align: left;
    line-height: 1.3;
  }
  .insp-item:before,
  .exp-item:before {
    left: -1rem;
  }
  /* News Section Mobile */
  .whats-new-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .news-list {
    order: 2;
    gap: 1.5rem;
  }
  .news-item {
    grid-template-columns: 150px 1fr;
    gap: 1rem;
  }
  .news-img {
    height: 100px;
  }
  .news-title {
    font-size: 1.125rem;
  }
  .whats-new-side{
    order: 1;
    margin-bottom: 1rem;
  }
  .whats-new-side h2 {
    /* font-size: clamp(2.5rem, 8vw, 5rem) !important; */
    /* text-align: center; */
  }
}
@media (max-width: 480px) {
  /* Extra Small Mobile Fixes */
  .insp-content,
  .exp-flex {
    gap: 1.5rem;
  }
  .insp-image,
  .exp-imagebox {
    height: 250px;
  }
  .insp-list,
  .exp-list {
    gap: 1rem;
  }
  .insp-item,
  .exp-item {
    display: flex;
    font-size: clamp(2.5rem, 8vw, 5rem);
    padding: 0.5rem 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
  }
  .insp-item:after,
  .exp-item:after {
    /* position: static; */
    transform: none;
    opacity: 1;
    font-size: clamp(1.5rem, 5vw, 3rem) !important;
    /* margin-top: 0.25rem; */
  }
  .insp-item:before,
  .exp-item:before {
    display: none;
  }
  /* News Item Mobile */
  .news-item {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    text-align: center;
  }
  .news-img {
    height: 150px;
    width: 100%;
  }
  .news-title {
    font-size: 1rem;
    margin-bottom: 0.75rem;
  }
  .news-meta {
    flex-direction: column;
    gap: 0.5rem;
  }
}
/* Animated scroll down mouse icon */
.mouse {
  width: 40px;
  height: 72px;
  border: 2px solid #fff;
  border-radius: 60px;
  position: relative;
}
.mouse::before {
  content: "";
  width: 4px;
  height: 12px;
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #fff;
  border-radius: 10%;
  opacity: 1;
  animation: wheel 2s infinite;
  -webkit-animation: wheel 2s infinite;
}
.mouse {
  cursor: pointer;
  z-index: 55;
}
.mousea {
  cursor: pointer;
}
@keyframes wheel {
  to {
    opacity: 0;
    top: 50px;
  }
}
/* BACK TO TOP BUTTON */
.progress-wrap {
  position: fixed;
  right: 50px;
  bottom: 50px;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  border-radius: 50px;
  box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.5);
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 200ms linear;
  -webkit-transition: all 200ms linear;
}
.progress-wrap.active-progress {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.progress-wrap::after, .progress-wrap::before {
  position: absolute;
  font-family: "Font Awesome 5 Free";
  content: "\f062";
  font-weight: 600;
  text-align: center;
  line-height: 46px;
  font-size: 24px;
  left: 0;
  top: 0;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  z-index: 1;
  transition: all 200ms linear;
  -webkit-transition: all 200ms linear;
}
.progress-wrap::after {
  color: rgba(186, 173, 106, 0.55);
}
.progress-wrap::before {
  opacity: 0;
  background-image: linear-gradient(45deg, var(--accent), rgba(186, 173, 106, 0.85) );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  z-index: 2;
}
.progress-wrap:hover::after {
  opacity: 0;
}
.progress-wrap:hover::before {
  opacity: 1;
}
.progress-wrap svg path {
  fill: none;
  stroke: #b00208;
  stroke-width: 4;
}
.progress-wrap svg path.progress-circle path {
  stroke: var(--accent);
  stroke-width: 4;
  box-sizing: border-box;
  transition: all 200ms linear;
  -webkit-transition: all 200ms linear;
}
/* vertical centering */
.valign-middle {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}
/* position centering */
.position-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.position-center-bottom {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(0, -50%);
}
.forward{
  z-index: 1000;
}


/* Playful beer 404 -------------------------------------------------- */
/* .beer-404 {
	--beer-gold: #f2bf5e;
	--beer-amber: #d08b2f;
	--beer-foam: #fff6e0;
	display: flex;
	gap: clamp(2rem, 6vw, 4rem);
	align-items: center;
	justify-content: center;
	padding: clamp(3rem, 8vw, 6rem) clamp(1.5rem, 6vw, 5rem);
	min-height: calc(100vh - 140px);
	background: radial-gradient(circle at top, rgba(255, 255, 255, 0.06), transparent 50%), #050505;
	color: #fff;
	position: relative;
	overflow: hidden;
}

.beer-404::after {
	content: '';
	position: absolute;
	width: 380px;
	height: 380px;
	background: rgba(255, 255, 255, 0.06);
	border-radius: 50%;
	filter: blur(20px);
	bottom: -160px;
	right: -80px;
}

.beer-404__keg {
	flex: 0 0 clamp(220px, 32vw, 360px);
	background: linear-gradient(160deg, #141414, #1f1f1f);
	border: 4px solid rgba(242, 191, 94, 0.2);
	border-radius: 40px;
	padding: clamp(2rem, 4vw, 3rem) 1.25rem 5rem;
	text-align: center;
	position: relative;
	box-shadow: 0 25px 60px rgba(0, 0, 0, 0.55);
}

.beer-404__number {
	display: inline-block;
	font-size: clamp(2.5rem, 6vw, 4.5rem);
	letter-spacing: 0.4rem;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.2);
	margin-bottom: 1.5rem;
}

.beer-404__tap {
	width: 78px;
	height: 78px;
	margin: 0 auto 1.5rem;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0));
	border: 2px solid rgba(255, 255, 255, 0.15);
	border-radius: 40px 40px 16px 16px;
	position: relative;
}

.beer-404__tap::after {
	content: '';
	width: 8px;
	height: 60px;
	background: var(--beer-gold);
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: -60px;
	border-radius: 8px;
}

.beer-404__glass {
	width: 70%;
	margin: 0 auto;
	height: clamp(150px, 32vh, 260px);
	border-radius: 6px 6px 26px 26px;
	border: 3px solid rgba(255, 255, 255, 0.35);
	background: rgba(255, 255, 255, 0.05);
	position: relative;
	overflow: hidden;
}

.beer-404__foam,
.beer-404__liquid {
	position: absolute;
	left: 0;
	width: 100%;
	transition: transform 0.6s ease, opacity 0.6s ease;
}

.beer-404__foam {
	background: var(--beer-foam);
	height: 30%;
	border-radius: 0 0 30px 30px;
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
	transform: translateY(-120%);
}

.beer-404__liquid {
	background: linear-gradient(180deg, var(--beer-gold), var(--beer-amber));
	height: 90%;
	bottom: 0;
	transform: translateY(100%);
}

.beer-404.is-pouring .beer-404__liquid {
	animation: beer-404-fill 2.1s ease forwards;
}

.beer-404.is-pouring .beer-404__foam {
	animation: beer-404-foam 2.1s ease forwards;
}

@keyframes beer-404-fill {
	0% {
		transform: translateY(100%);
	}
	80% {
		transform: translateY(5%);
	}
	100% {
		transform: translateY(10%);
	}
}

@keyframes beer-404-foam {
	0% {
		transform: translateY(-120%);
	}
	55% {
		transform: translateY(-20%);
	}
	100% {
		transform: translateY(-10%);
	}
}

.beer-404__content {
	max-width: 540px;
	position: relative;
	z-index: 1;
}

.beer-404__eyebrow {
	text-transform: uppercase;
	letter-spacing: 0.2em;
	font-size: 0.85rem;
	color: rgba(255, 255, 255, 0.6);
	margin-bottom: 0.75rem;
}

.beer-404__title {
	font-size: clamp(2.2rem, 5vw, 3.5rem);
	margin-bottom: 1rem;
}

.beer-404__description {
	color: rgba(255, 255, 255, 0.8);
	margin-bottom: 1.5rem;
	line-height: 1.6;
}

.beer-404__action {
	background: var(--beer-amber);
	color: #1f1200;
	border: none;
	font-weight: 600;
	padding: 0.85rem 1.75rem;
	border-radius: 999px;
	cursor: pointer;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.beer-404__action:hover,
.beer-404__action:focus {
	transform: translateY(-2px);
	box-shadow: 0 18px 30px rgba(0, 0, 0, 0.45);
}

.beer-404__message {
	margin-top: 1.5rem;
	font-size: 1.05rem;
	color: var(--beer-foam);
	min-height: 2.5rem;
}

.beer-404__links {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin-top: 2rem;
}

.beer-404__link {
	background: transparent;
	border: 2px solid rgba(255, 255, 255, 0.4);
	color: #fff;
	padding: 0.65rem 1.5rem;
	border-radius: 999px;
	text-decoration: none;
	font-weight: 600;
	cursor: pointer;
	transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.beer-404__link:hover,
.beer-404__link:focus {
	border-color: var(--beer-gold);
	color: var(--beer-gold);
}

.beer-404__link--ghost {
	background: rgba(255, 255, 255, 0.08);
	border-color: transparent;
}

.beer-404__link--ghost:hover,
.beer-404__link--ghost:focus {
	background: rgba(255, 255, 255, 0.18);
	color: #fff;
}

@media (max-width: 980px) {
	.beer-404 {
		flex-direction: column;
		text-align: center;
	}

	.beer-404__keg {
		width: 100%;
		max-width: 360px;
	}

	.beer-404__content {
		max-width: 640px;
	}

	.beer-404__links {
		justify-content: center;
	}
}

@media (max-width: 600px) {
	.beer-404 {
		padding: 2.5rem 1.25rem 3rem;
	}

	.beer-404__keg {
		padding-bottom: 4rem;
	}

	.beer-404__glass {
		width: 80%;
	}
} */
