:root {
  --pri: #F5F0EB;
  --sec: #3D6B7C;
  --acc: #B85C38;
  --dark: #1E3A47;
  --textDark: #1A2E36;
  --textMid: #2D4A56;
  --textLight: #4A6B7A;
  --font-head: 'Fraunces', serif;
  --font-body: 'Commissioner', sans-serif;
  --radius: 8px;
  --shadow: 0 10px 40px rgba(0,0,0,0.08);
  --grad: linear-gradient(90deg, var(--sec), var(--acc), var(--sec));
  --footer-bg: #0F1F26;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--textDark);
  background: #FFFFFF;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  color: var(--dark);
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  margin-bottom: 1rem;
}

h3 {
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
}

p {
  margin-bottom: 1.5rem;
  color: var(--textMid);
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

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

/* Utils */
.bar-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.bar-section {
  padding: clamp(60px, 8vw, 100px) 0;
  position: relative;
}

.bar-section--alt {
  background-color: var(--pri);
}

/* Unique block structure */
.bar-block {
  position: relative;
  padding: clamp(60px, 8vw, 100px) 0;
}

.bar-block--why {
  background: var(--pri);
  padding-top: clamp(80px, 12vw, 140px);
}
.bar-block--why .bar-block__inner { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.bar-block--why .bar-block__title { text-align: center; margin-bottom: 2.5rem; }
.bar-block--why .bar-block__grid { display: grid; gap: 30px; grid-template-columns: 1fr; }
@media (min-width: 768px) { .bar-block--why .bar-block__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .bar-block--why .bar-block__grid { grid-template-columns: repeat(4, 1fr); } }

.bar-block--experiences {
  background: #fff;
}
.bar-block--experiences .bar-block__inner { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.bar-block--experiences .bar-block__grid { display: grid; gap: 30px; grid-template-columns: 1fr; }
@media (min-width: 768px) { .bar-block--experiences .bar-block__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .bar-block--experiences .bar-block__grid { grid-template-columns: repeat(3, 1fr); grid-template-rows: auto; } }

.bar-block--destinations {
  background: var(--pri);
}
.bar-block--destinations .bar-block__inner { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.bar-block--destinations .bar-block__title { text-align: center; margin-bottom: 2.5rem; }
.bar-block--destinations .bar-block__grid { display: grid; gap: 28px; grid-template-columns: 1fr; }
@media (min-width: 768px) { .bar-block--destinations .bar-block__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .bar-block--destinations .bar-block__grid { grid-template-columns: repeat(4, 1fr); } }

.bar-block--newsletter {
  background: #fff;
  text-align: center;
}
.bar-block--newsletter .bar-block__inner { max-width: 560px; margin: 0 auto; padding: 0 20px; }
.bar-block--newsletter .bar-block__title { margin-bottom: 0.5rem; }
.bar-block--newsletter .bar-block__lead { margin-bottom: 1.5rem; color: var(--textMid); }

.bar-block--reviews {
  background: var(--pri);
}
.bar-block--reviews .bar-block__inner { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.bar-block--reviews .bar-block__title { text-align: center; margin-bottom: 2.5rem; }
.bar-block--reviews .bar-block__grid { display: grid; gap: 28px; grid-template-columns: 1fr; }
@media (min-width: 768px) { .bar-block--reviews .bar-block__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .bar-block--reviews .bar-block__grid { grid-template-columns: repeat(3, 1fr); } }
.bar-block--reviews .bar-block__cta { text-align: center; margin-top: 2.5rem; }

.bar-btn {
  display: inline-block;
  background: var(--acc);
  color: #fff;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  font-size: 1rem;
}

.bar-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(184, 92, 56, 0.35);
  background: var(--dark);
}

.bar-btn--outline {
  background: transparent;
  border: 2px solid var(--acc);
  color: var(--acc);
}

.bar-btn--outline:hover {
  background: var(--acc);
  color: #fff;
}

/* Separator */
.bar-separator {
  position: absolute;
  left: 0;
  width: 100%;
  line-height: 0;
  z-index: 1;
}

.bar-separator--top {
  top: 0;
  transform: rotate(180deg);
}

.bar-separator--bottom {
  bottom: 0;
}

.bar-separator svg {
  width: 100%;
  height: 60px;
  fill: var(--pri);
}

/* Header */
.bar-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.3s ease;
}

.bar-header.scrolled {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  padding: 12px 0;
}

.bar-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.bar-logo {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  color: var(--dark);
}

.bar-menu {
  display: flex;
  gap: 32px;
  list-style: none;
}

.bar-menu a {
  font-weight: 500;
  color: var(--textDark);
  position: relative;
}

.bar-menu a:hover, .bar-menu a.active {
  color: var(--acc);
}

.bar-dropdown {
  position: relative;
}

.bar-dropdown-content {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: #fff;
  min-width: 200px;
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.bar-dropdown:hover .bar-dropdown-content,
.bar-dropdown:focus-within .bar-dropdown-content {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.bar-dropdown-content a {
  display: block;
  padding: 10px 20px;
  white-space: nowrap;
}

.bar-dropdown-content a:hover {
  background: var(--pri);
}

.bar-hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: var(--dark);
  padding: 4px;
  line-height: 1;
  position: relative;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
}

.bar-hamburger .bar-hamburger__icon--close {
  display: none;
}

.bar-hamburger.is-open .bar-hamburger__icon--menu {
  display: none;
}

.bar-hamburger.is-open .bar-hamburger__icon--close {
  display: inline;
  font-size: 1.6rem;
  font-weight: 300;
}

/* Hero */
.bar-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.bar-hero__bg-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(135deg, #3D6B7C, #2D5A6B, #B85C38, #1E3A47);
  background-size: 400% 400%;
  animation: gradientShift 15s ease infinite;
  opacity: 0.5;
}

.bar-hero__bg-img {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.6;
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.bar-hero__content {
  position: relative;
  z-index: 2;
  color: var(--dark);
  max-width: 800px;
  padding: 0 20px;
}

.bar-hero__title {
  color: #FFFFFF;
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
  margin-bottom: 1rem;
}

.bar-hero__tagline {
  font-size: 1.5rem;
  color: #F5F0EB;
  font-weight: 600;
  margin-bottom: 1rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.bar-hero__sub {
  color: #FFFFFF;
  font-size: 1.2rem;
  margin-bottom: 2rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

/* Cards */
.bar-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 30px;
}

@media (min-width: 768px) {
  .bar-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .bar-grid-3 { grid-template-columns: repeat(3, 1fr); }
  .bar-grid-4 { grid-template-columns: repeat(4, 1fr); }
}

.bar-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bar-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 50px rgba(0,0,0,0.12);
}

.bar-card__img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.bar-card__content {
  padding: 24px;
}

.bar-card__title {
  margin-bottom: 10px;
  color: var(--dark);
}

/* Features — new card structure (What You Get) */
.bar-feature-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px 24px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--acc);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
}

.bar-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

.bar-feature-card__num {
  display: inline-block;
  width: 32px;
  height: 32px;
  line-height: 32px;
  text-align: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  color: #fff;
  background: var(--acc);
  border-radius: 50%;
  margin-bottom: 16px;
}

.bar-feature-card__icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: var(--pri);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.bar-feature-card__icon-wrap img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.bar-feature-card__title {
  font-size: 1.15rem;
  margin-bottom: 8px;
  color: var(--dark);
}

.bar-feature-card__text {
  font-size: 0.95rem;
  color: var(--textMid);
  margin: 0;
  line-height: 1.6;
}

/* Experience cards (Featured Experiences) */
.bar-experience-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.bar-experience-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.12);
}

.bar-experience-card__media {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.bar-experience-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.bar-experience-card:hover .bar-experience-card__media img {
  transform: scale(1.05);
}

.bar-experience-card__label {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #fff;
  background: rgba(0,0,0,0.5);
  padding: 4px 10px;
  border-radius: 6px;
}

.bar-experience-card__body {
  padding: 22px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.bar-experience-card__title {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: var(--dark);
}

.bar-experience-card__excerpt {
  font-size: 0.95rem;
  color: var(--textMid);
  margin: 0 0 14px;
  line-height: 1.55;
  flex: 1;
}

.bar-experience-card__action {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--acc);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
}

.bar-experience-card__action:hover {
  color: var(--dark);
}

/* Destination cards (Explore Our Destinations) */
.bar-dest-card {
  display: block;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
  color: inherit;
}

.bar-dest-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.12);
}

.bar-dest-card__visual {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  position: relative;
  overflow: hidden;
}

.bar-dest-card__visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.2), transparent 50%);
  pointer-events: none;
}

.bar-dest-card__body {
  padding: 22px 24px;
  border-top: 3px solid var(--pri);
}

.bar-dest-card__title {
  font-size: 1.25rem;
  margin-bottom: 4px;
  color: var(--dark);
}

.bar-dest-card__tagline {
  font-size: 0.9rem;
  color: var(--textMid);
  margin: 0 0 12px;
  line-height: 1.5;
}

.bar-dest-card__arrow {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--acc);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.bar-dest-card:hover .bar-dest-card__arrow {
  color: var(--dark);
}

/* Review cards — new structure */
.bar-review-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px 24px;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  border-top: 4px solid var(--acc);
}

.bar-review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

.bar-review-card__top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.bar-review-card__avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.bar-review-card__meta {
  flex: 1;
  min-width: 0;
}

.bar-review-card__meta .bar-review-card__name {
  font-size: 1.05rem;
  font-weight: 600;
  margin: 0 0 2px;
  color: var(--dark);
}

.bar-review-card__loc {
  font-size: 0.85rem;
  color: var(--acc);
}

.bar-review-card__stars {
  color: #FFC107;
  font-size: 1rem;
  margin-bottom: 12px;
}

.bar-review-card__quote {
  font-size: 0.95rem;
  color: var(--textMid);
  line-height: 1.65;
  margin: 0;
  font-style: italic;
}

.bar-review-card__quote::before {
  content: '"';
}
.bar-review-card__quote::after {
  content: '"';
}

/* Attraction cards (destination pages) */
.bar-attraction-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.bar-attraction-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.12);
}

.bar-attraction-card__img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.bar-attraction-card__content {
  padding: 22px 24px;
  flex: 1;
}

.bar-attraction-card__location {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--acc);
  margin-bottom: 6px;
}

.bar-attraction-card__title {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: var(--dark);
}

.bar-attraction-card__desc {
  font-size: 0.95rem;
  color: var(--textMid);
  margin: 0;
  line-height: 1.55;
}

/* Page content blocks (About, Contact) */
.bar-page-block {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.bar-page-block__grid {
  display: grid;
  gap: 48px;
  grid-template-columns: 1fr;
  align-items: center;
}

@media (min-width: 768px) {
  .bar-page-block__grid {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
  }
}

.bar-page-block__content h1 {
  margin-bottom: 24px;
}

.bar-page-block__content .bar-page-block__lead {
  margin-bottom: 20px;
  font-size: 1.05rem;
  color: var(--textMid);
}

.bar-page-block__media img {
  width: 100%;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.bar-contact-block__info {
  margin-bottom: 24px;
}

.bar-contact-block__info p {
  margin-bottom: 8px;
}

/* Legacy — keep for any old markup */
.bar-feature {
  text-align: center;
  padding: 30px;
}

.bar-feature__icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  object-fit: contain;
}

.bar-review {
  text-align: left;
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.bar-review__header {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}

.bar-review__avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 16px;
}

.bar-review__meta h4 {
  font-size: 1.1rem;
  margin: 0;
}

.bar-review__loc {
  font-size: 0.9rem;
  color: var(--acc);
}

.bar-review__stars {
  color: #FFC107;
  margin-bottom: 12px;
}

/* Forms */
.bar-form {
  max-width: 600px;
  margin: 0 auto;
  background: #fff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.bar-form-group {
  margin-bottom: 20px;
}

.bar-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--textDark);
}

.bar-input, .bar-select, .bar-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.3s;
}

.bar-input:focus, .bar-select:focus, .bar-textarea:focus {
  outline: none;
  border-color: var(--acc);
}

.bar-textarea {
  height: 120px;
  resize: vertical;
}

/* Footer — unique structure */
.bar-footer {
  background: var(--footer-bg);
  color: #fff;
  padding: 0 0 0;
  position: relative;
  overflow: hidden;
}

.bar-footer__wave {
  display: block;
  width: 100%;
  height: 64px;
  margin-bottom: -1px;
  fill: var(--footer-bg);
}

.bar-footer__main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 20px 40px;
}

.bar-footer__top {
  display: grid;
  gap: 40px;
  grid-template-columns: 1fr;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

@media (min-width: 768px) {
  .bar-footer__top { grid-template-columns: 1.2fr 1fr; gap: 48px; }
}

@media (min-width: 1024px) {
  .bar-footer__top { grid-template-columns: 1.4fr 1fr 1fr; }
}

.bar-footer__brand {
  max-width: 360px;
}

.bar-footer__brand .bar-logo {
  color: #fff;
  margin-bottom: 8px;
  display: block;
}

.bar-footer__tagline {
  color: rgba(255,255,255,0.7);
  font-style: italic;
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.bar-footer__address {
  color: rgba(255,255,255,0.65);
  font-style: normal;
  font-size: 0.9rem;
  line-height: 1.7;
}

.bar-footer__nav-group {
  list-style: none;
}

.bar-footer__nav-group h4 {
  color: #fff;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}

.bar-footer__nav-group ul {
  list-style: none;
}

.bar-footer__nav-group li {
  margin-bottom: 10px;
}

.bar-footer__nav-group a {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.bar-footer__nav-group a:hover {
  color: var(--acc);
}

.bar-footer__links-row {
  display: flex;
  flex-wrap: wrap;
  gap: 32px 48px;
}

@media (min-width: 768px) {
  .bar-footer__links-row { gap: 48px 64px; }
}

.bar-footer__copy {
  text-align: center;
  padding: 24px 20px;
  color: rgba(255,255,255,0.4);
  font-size: 0.85rem;
}

/* Legacy footer grid (keep for backward compatibility on other pages) */
.bar-footer__grid {
  display: grid;
  gap: 40px;
  grid-template-columns: 1fr;
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 20px 40px;
}

@media (min-width: 768px) {
  .bar-footer__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .bar-footer__grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; }
}

.bar-footer h4 {
  color: #fff;
  margin-bottom: 20px;
}

.bar-footer ul {
  list-style: none;
}

.bar-footer li {
  margin-bottom: 12px;
}

.bar-footer a {
  color: #ccc;
}

.bar-footer a:hover {
  color: var(--acc);
}

.bar-footer__copy-legacy {
  text-align: center;
  margin-top: 60px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: #666;
  font-size: 0.9rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* Popup */
.bar-popup {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
}

.bar-popup.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.bar-popup__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(4px);
  animation: fadeIn 0.3s ease;
}

.bar-popup__box {
  position: relative;
  background: #fff;
  border-radius: 24px;
  padding: 48px 40px;
  max-width: 440px;
  width: 90%;
  text-align: center;
  animation: popIn 0.4s cubic-bezier(0.34,1.56,0.64,1);
  box-shadow: 0 24px 80px rgba(0,0,0,0.2);
}

.bar-popup__icon {
  font-size: 56px;
  margin-bottom: 16px;
}

.bar-popup__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}

.bar-popup__msg {
  font-size: 1rem;
  color: var(--textMid);
  line-height: 1.6;
  margin-bottom: 24px;
}

@keyframes popIn {
  from { opacity: 0; transform: scale(0.8) translateY(20px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Reveal Animation */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.7s cubic-bezier(0.25,0.46,0.45,0.94);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Cookie Banner */
.bar-cookie {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: #fff;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  z-index: 9990;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 600px;
  margin: 0 auto;
  transform: translateY(150%);
  transition: transform 0.5s ease;
}

.bar-cookie.active {
  transform: translateY(0);
}

@media (max-width: 991px) {
  .bar-menu {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    transform: translateY(-150%);
    transition: transform 0.4s ease;
    z-index: 999;
  }

  .bar-menu.open {
    transform: translateY(0);
  }

  .bar-hamburger {
    display: flex;
  }

  .bar-dropdown-content {
    position: static;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    padding-left: 20px;
    display: none;
  }

  .bar-dropdown:hover .bar-dropdown-content {
    display: block;
  }
}
