@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

:root {
  
  --bg-color: #fcfbfa;           
  --bg-color-alt: #f4f1eb;       
  --text-dark: #2c2825;          
  --text-light: #6a645e;         
  --wood-brown: #3a2c22;         
  --olive-green: #7a7d65;        
  --brick-red: #8b3123;          
  --brick-red-hover: #6a2419;
  
  
  --font-headings: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  
  
  --container-width: 1200px;
  --header-height: 80px;
  --transition: all 0.3s ease;
}


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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background-color: var(--bg-color);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
  /* Page Fade-In */
  animation: pageFadeIn 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes pageFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}


h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-headings);
  font-weight: 400;
  color: var(--wood-brown);
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

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

ul {
  list-style: none;
}


.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

.text-center { text-align: center; }
.mt-4 { margin-top: 2rem; }
.mb-4 { margin-bottom: 2rem; }

.section {
  padding: 80px 0;
}

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

.btn {
  display: inline-block;
  padding: 12px 36px;
  background-color: var(--brick-red);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 400;
  border-radius: 2px;
  border: 1px solid var(--brick-red);
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.85rem;
  transition: var(--transition);
}

.btn:hover {
  background-color: var(--brick-red-hover);
  color: #fff;
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  border: 1px solid var(--wood-brown);
  color: var(--wood-brown);
}

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


.section-title {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  text-align: center;
  position: relative;
  padding-bottom: 25px;
  letter-spacing: 1px;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 1px;
  background-color: var(--wood-brown);
}

.section-subtitle {
  text-align: center;
  color: var(--text-light);
  font-style: italic;
  font-family: var(--font-headings);
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto 3rem auto;
}


:root {
  --header-logo-bg: #ffffff;  
  --header-nav-height: 48px;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--header-logo-bg);
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(58,44,34,0.10);
  transition: background-color 0.4s ease, box-shadow 0.4s ease, backdrop-filter 0.4s ease;
}

.header.scrolled {
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(58,44,34,0.12);
}



.header-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}


.header-logo-wrap {
  width: 100%;
  background-color: var(--header-logo-bg);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 20px 6px;
  transition: background-color 0.4s ease;
}

.header.scrolled .header-logo-wrap {
  background-color: transparent;
}


.logo-link {
  display: inline-block;
  line-height: 0;
}

.logo-img {
  display: block;
  height: auto;
  width: auto;
  max-height: 110px;       
  max-width: min(400px, 80vw);  
  object-fit: contain;
}


.header-nav-wrap {
  width: 100%;
  background-color: var(--wood-brown);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: var(--header-nav-height);
  position: relative;
  transition: background-color 0.4s ease;
}

.header.scrolled .header-nav-wrap {
  background-color: rgba(58, 44, 34, 0.85);
}


.header-phone {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}

.header-phone-link {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.80);
  font-size: 0.78rem;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  font-weight: 500;
  transition: color 0.2s;
}

.header-phone-link:hover {
  color: #fff;
}

@media (max-width: 480px) {
  .header-phone {
    display: none;
  }
}

.nav-links {
  display: flex;
  gap: 0;
  justify-content: center;
  flex-wrap: wrap;
}

.nav-links li {
  position: relative;
}

.nav-links a {
  display: block;
  color: rgba(255,255,255,0.88);
  font-weight: 400;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  padding: 0 22px;
  line-height: var(--header-nav-height);
  transition: color 0.2s, background-color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: #fff !important;
  background-color: rgba(255,255,255,0.10);
}


.nav-links li + li > a {
  border-left: 1px solid rgba(255,255,255,0.15);
}


.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1001;
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  padding: 6px;
}


.nav-close-item {
  display: none;
}


.nav-close-btn {
  display: none;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50%;
  color: #fff;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  z-index: 1003;
  transition: background 0.2s;
}
.nav-close-btn:hover {
  background: rgba(255,255,255,0.22);
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: #fff;
  margin: 5px 0;
  transition: var(--transition);
}


body {
  --computed-header-height: calc(110px + 20px + var(--header-nav-height));
}

body:not(.home) {
  padding-top: var(--computed-header-height);
}


.hero {
  height: 100vh;
  min-height: 600px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  -webkit-mask-image: linear-gradient(to bottom, black 85%, transparent 100%);
  mask-image: linear-gradient(to bottom, black 85%, transparent 100%);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(25, 20, 15, 0.1) 0%,
    rgba(25, 20, 15, 0.75) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 800px;
  padding: 0 20px;
  color: #fff;
}

.hero-title {
  font-size: 4rem;
  color: #fff;
  margin-bottom: 20px;
  font-weight: 500;
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.7), 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 40px;
  font-family: var(--font-headings);
  font-style: italic;
  color: rgba(255, 255, 255, 0.98);
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.6), 0 1px 3px rgba(0, 0, 0, 0.5);
  letter-spacing: 0.5px;
}


.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding-top: 50px; 
}

.feature-card {
  position: relative;
  border-radius: 20px;
  padding: 165px 25px 40px; 
  margin-top: 50px; 
  transition: var(--transition);
  box-shadow: 0 16px 45px rgba(58,44,34,0.06); 
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none;
}



.feature-card:nth-child(1) { background: linear-gradient(135deg, #4f7b85, #42676f); }


.feature-card:nth-child(2) { background: linear-gradient(135deg, #d3734a, #bf643c); }


.feature-card:nth-child(3) { background: linear-gradient(135deg, #7c9466, #6b8256); }

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 55px rgba(58,44,34,0.12); 
}

.feature-img {
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%) rotate(-4deg);
  width: 88%;
  height: 200px;
  border-radius: 16px;
  background-size: cover;
  background-position: center;
  box-shadow: 0 18px 35px rgba(0,0,0,0.15); 
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 4px solid rgba(255, 255, 255, 0.05); 
  z-index: 2;
}

.feature-card:hover .feature-img {
  transform: translateX(-50%) rotate(0deg) scale(1.03);
}

.feature-content {
  width: 100%;
  position: relative;
  z-index: 1;
}

.feature-content h3 {
  color: #ffffff;
  font-family: var(--font-headings);
  font-size: 2rem;
  margin-bottom: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-shadow: 1px 2px 4px rgba(0,0,0,0.15);
  line-height: 1.25;
}

.feature-content p {
  color: rgba(255, 255, 255, 0.95);
  font-family: var(--font-headings); 
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.6;
  letter-spacing: 0.3px;
  margin: 0;
}


.menu-section {
  max-width: 800px;
  margin: 0 auto 50px auto;
}

.menu-category-title {
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--wood-brown);
  border-bottom: 1px solid rgba(58, 44, 34, 0.1);
  padding-bottom: 15px;
  margin-bottom: 35px;
  text-align: center;
  letter-spacing: 1px;
}

.menu-item {
  margin-bottom: 25px;
  display: flex;
  flex-direction: column;
}

.menu-item-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.menu-item-title {
  font-family: var(--font-headings);
  font-size: 1.25rem;
  color: var(--wood-brown);
  font-weight: 500;
  letter-spacing: 0.5px;
}

.menu-item-desc {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-top: 5px;
}


.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 50px;
}

.split-layout.reverse {
  direction: rtl;
}

.split-layout.reverse > * {
  direction: ltr;
}

.split-image {
  overflow: hidden;
  -webkit-mask-image: radial-gradient(ellipse at center, black 65%, transparent 100%);
  mask-image: radial-gradient(ellipse at center, black 65%, transparent 100%);
}

.split-content p {
  margin-bottom: 20px;
  color: var(--text-light);
}


.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.home .gallery-grid {
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  
  .home .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .home .gallery-item {
    height: 120px;
  }
}

.gallery-item {
  position: relative;
  height: 300px;
  overflow: hidden;
  -webkit-mask-image: radial-gradient(ellipse at center, black 60%, transparent 100%);
  mask-image: radial-gradient(ellipse at center, black 60%, transparent 100%);
  cursor: pointer;
}

@media (max-width: 768px) {
  .gallery-item {
    height: 180px;
  }
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}


.contact-form {
  background: #fff;
  padding: 40px;
  border-radius: 4px;
  box-shadow: 0 5px 30px rgba(0,0,0,0.03);
  border: 1px solid rgba(0,0,0,0.03);
}

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

.form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--olive-green);
  box-shadow: 0 0 0 3px rgba(90, 100, 70, 0.1);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}


.footer {
  background-color: #fff;
  padding: 80px 0 40px 0;
  text-align: center;
  position: relative;
}







.footer .container {
  position: relative;
  z-index: 10;
}

.footer-nav {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 25px;
  flex-wrap: wrap;
}

.footer-nav a {
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 1px;
  font-weight: 500;
  color: var(--text-dark);
}

.footer-nav a:hover {
  color: var(--brick-red);
}

.footer-contact-direct {
  margin-bottom: 20px;
  font-size: 1.05rem;
  font-family: var(--font-headings);
  font-style: italic;
}

.footer-contact-direct a {
  color: #df7356; 
  font-weight: 500;
  font-family: var(--font-body);
  font-style: normal;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 25px;
}

.footer-social img {
  width: 36px;
  height: 36px;
  transition: transform 0.3s;
}

.footer-social a:hover img {
  transform: scale(1.1);
}

.footer-description {
  max-width: 600px;
  margin: 0 auto 30px auto;
  color: var(--text-light);
  font-size: 0.85rem;
  line-height: 1.6;
}

.footer-bottom {
  font-size: 0.75rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
}


.contact-info-card {
  background: var(--bg-color-alt);
  padding: 30px;
  border-radius: 8px;
  margin-bottom: 20px;
}

.contact-info-card h4 {
  color: var(--olive-green);
  margin-bottom: 10px;
}

.contact-info-card p, .contact-info-card a {
  color: var(--text-dark);
  font-size: 1.1rem;
}

.btn-whatsapp {
  background-color: #25D366;
  width: 100%;
  margin-top: 20px;
}

.btn-whatsapp:hover {
  background-color: #1ebe58;
}


@media (max-width: 992px) {
  .hero-title { font-size: 3rem; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .split-layout { grid-template-columns: 1fr; gap: 30px; }
  .split-layout.reverse { direction: ltr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }

  .logo-img {
    max-height: 88px;
  }
}

@media (max-width: 768px) {
  .hero-title { font-size: 2.5rem; }
  .features-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .section { padding: 50px 0; }

  .logo-img {
    max-height: 72px;
    max-width: 70vw;
  }

  
  .menu-toggle { display: block; }
  .menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle.active span:nth-child(2) { opacity: 0; }
  .menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 260px;
    height: 100vh;
    background-color: var(--wood-brown);
    flex-direction: column;
    flex-wrap: nowrap;
    padding-top: 14px;   
    box-shadow: -5px 0 20px rgba(0,0,0,0.15);
    transition: right 0.3s ease;
    z-index: 1002;
    overflow-y: auto;
  }

  
  .nav-close-item {
    display: flex;
    justify-content: flex-end;
    padding: 10px 14px 4px;
    min-height: 56px;
    align-items: center;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links li + li > a {
    border-left: none;
    border-top: 1px solid rgba(255,255,255,0.10);
  }

  
  .nav-close-item + li > a {
    border-top: none;
  }

  .nav-links a {
    color: rgba(255,255,255,0.9);
    padding: 14px 30px;
    line-height: 1.6;
    letter-spacing: 1.2px;
  }

  .nav-links a:hover,
  .nav-links a.active {
    background-color: rgba(255,255,255,0.08);
  }

  
  body {
    --computed-header-height: calc(72px + 16px + var(--header-nav-height));
  }

}

@media (max-width: 480px) {
  .logo-img {
    max-height: 60px;
    max-width: 65vw;
  }
  body {
    --computed-header-height: calc(60px + 16px + var(--header-nav-height));
  }
}


.gallery-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  margin-top: 56px;
  flex-wrap: wrap;
  padding-bottom: 10px;
}

@media (max-width: 480px) {
  .gallery-pagination .page-btn {
    padding: 8px 12px;
    font-size: 1rem;
  }
  .gallery-pagination .page-btn[aria-label="Pagina precedente"],
  .gallery-pagination .page-btn[aria-label="Pagina successiva"] {
    padding: 8px 15px;
  }
}


.gallery-pagination .page-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-headings); 
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--text-light);
  letter-spacing: 0.5px;
  padding: 8px 16px;
  position: relative;
  transition: color 0.25s ease;
  line-height: 1;
  flex-shrink: 0;
}


.gallery-pagination .page-btn::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  width: 16px;
  height: 1px;
  background-color: var(--brick-red);
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease;
}

.gallery-pagination .page-btn:hover {
  color: var(--wood-brown);
}
.gallery-pagination .page-btn:hover::after {
  transform: translateX(-50%) scaleX(1);
}


.gallery-pagination .page-btn.active {
  color: var(--wood-brown);
  font-weight: 600;
  pointer-events: none;
}
.gallery-pagination .page-btn.active::after {
  transform: translateX(-50%) scaleX(1);
}


.gallery-pagination .page-btn[aria-label="Pagina precedente"],
.gallery-pagination .page-btn[aria-label="Pagina successiva"] {
  font-family: var(--font-body);
  font-size: 1rem;
  letter-spacing: 0;
  padding: 8px 20px;
  color: var(--text-light);
}
.gallery-pagination .page-btn[aria-label="Pagina precedente"]::after,
.gallery-pagination .page-btn[aria-label="Pagina successiva"]::after {
  display: none;
}
.gallery-pagination .page-btn[aria-label="Pagina precedente"]:hover,
.gallery-pagination .page-btn[aria-label="Pagina successiva"]:hover {
  color: var(--wood-brown);
}


.gallery-pagination .page-btn[aria-label="Pagina precedente"] {
  margin-right: 10px;
  border-right: 1px solid rgba(58,44,34,0.15);
  padding-right: 24px;
}

@media (max-width: 480px) {
  .gallery-pagination .page-btn[aria-label="Pagina precedente"] {
    margin-right: 5px;
    padding-right: 12px;
    border-right: none;
  }
}

.gallery-pagination .page-btn[aria-label="Pagina successiva"] {
  margin-left: 10px;
  border-left: 1px solid rgba(58,44,34,0.15);
  padding-left: 24px;
}

@media (max-width: 480px) {
  .gallery-pagination .page-btn[aria-label="Pagina successiva"] {
    margin-left: 5px;
    padding-left: 12px;
    border-left: none;
  }
}


.gallery-pagination .page-btn:disabled {
  opacity: 0.2;
  cursor: not-allowed;
}
.gallery-pagination .page-btn:disabled:hover {
  color: var(--text-light);
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), 
              transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

.home-map-section {
  padding: 0;
  position: relative;
  background-color: var(--bg-color-alt);
}

.home-map-section .map-label {
  text-align: center;
  padding: 60px 20px 40px;
}

.home-map-section .map-label h2 {
  font-size: 2.8rem;
  position: relative;
  display: inline-block;
  padding-bottom: 25px;
  letter-spacing: 1px;
}

.home-map-section .map-label h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 1px;
  background-color: var(--wood-brown);
}

.home-map-section .map-label p {
  margin-top: 16px;
  color: var(--text-light);
  font-style: italic;
  font-family: var(--font-headings);
  font-size: 1.15rem;
}

.home-map-wrapper {
  width: 100%;
  height: 420px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, black 8%, black 92%, transparent 100%);
}

.home-map-wrapper {
  width: 100%;
  height: 420px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, black 8%, black 92%, transparent 100%);
}

.home-map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: grayscale(25%) contrast(1.05);
}

.map-cta {
  text-align: center;
  padding: 32px 20px 60px;
}

@media (max-width: 768px) {
  .home-map-wrapper {
    height: 300px;
  }
}

.reviews-section {
  padding-bottom: 90px;
}

.reviews-carousel {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 40px 0;
  cursor: grab;
}

.reviews-carousel:active {
  cursor: grabbing;
}

.reviews-track {
  display: flex;
  gap: 24px;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}

.review-card {
  flex: 0 0 calc(33.333% - 16px);
  background: #ffffff;
  border-radius: 16px;
  padding: 28px 28px 24px;
  box-shadow: 0 4px 24px rgba(58,44,34,0.07);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(58,44,34,0.06);
  user-select: none;
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 36px rgba(58,44,34,0.12);
}

.review-stars {
  color: #e8a020;
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.review-title {
  font-family: var(--font-headings);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--wood-brown);
  font-weight: 600;
  margin: 0;
  line-height: 1.4;
}

.review-text {
  color: var(--text-light);
  font-size: 0.92rem;
  line-height: 1.7;
  margin: 0;
  flex: 1;
}

.review-footer {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 6px;
  padding-top: 16px;
  border-top: 1px solid rgba(58,44,34,0.08);
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--wood-brown), var(--olive-green));
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  letter-spacing: 0.5px;
}

.review-author-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.review-author {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-dark);
  letter-spacing: 0.3px;
}

.review-source {
  font-size: 0.75rem;
  color: #4285F4;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 500;
  transition: opacity 0.2s;
}

.review-source:hover {
  opacity: 0.75;
}

@media (max-width: 992px) {
  .review-card {
    flex: 0 0 calc(50% - 12px);
  }
}

@media (max-width: 600px) {
  .review-card {
    flex: 0 0 100%;
  }
}

/* Lightbox styles */
.lightbox {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 2000;
  display: none;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  padding: 20px;
  box-sizing: border-box;
}

.lightbox.active {
  display: flex;
  opacity: 1;
}

.lightbox-content {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 100%;
  max-height: 100%;
}

.lightbox-img {
  display: block;
  max-width: 90vw;
  max-height: 80vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border: 6px solid #fff;
  border-radius: 4px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  box-sizing: border-box;
}

.lightbox-close {
  position: fixed;
  top: 20px;
  right: 30px;
  color: #333;
  font-size: 3rem;
  font-weight: 300;
  cursor: pointer;
  line-height: 1;
  z-index: 2010;
  transition: transform 0.2s ease;
}

.lightbox-close:hover {
  transform: scale(1.15);
}

.lightbox-prev, .lightbox-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  color: #333;
  font-size: 2rem;
  background: rgba(255,255,255,0.7);
  border: none;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  z-index: 2010;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.lightbox-prev:hover, .lightbox-next:hover {
  background: #fff;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

@media (max-width: 768px) {
  .lightbox {
    padding: 10px;
  }
  .lightbox-img {
    max-width: 95vw;
    max-height: 70vh;
  }
  .lightbox-prev { left: 10px; bottom: 30px; top: auto; transform: none; }
  .lightbox-next { right: 10px; bottom: 30px; top: auto; transform: none; }
  .lightbox-close { top: 20px; right: 20px; }
  
  .gallery-filter {
    display: flex;
    overflow-x: auto;
    white-space: nowrap;
    justify-content: center;
    padding: 10px 0;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .gallery-filter::-webkit-scrollbar {
    display: none;
  }
  .filter-btn {
    flex: 0 0 auto;
  }
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: -150px;
  left: 0;
  width: 100%;
  background-color: #fff;
  box-shadow: 0 -5px 30px rgba(58, 44, 34, 0.12);
  z-index: 2000;
  padding: 25px 0;
  transition: bottom 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  border-top: 1px solid rgba(58, 44, 34, 0.05);
}

.cookie-banner.visible {
  bottom: 0;
}

.cookie-container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.cookie-text p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-dark);
  line-height: 1.5;
}

.cookie-text a {
  color: var(--brick-red);
  font-weight: 500;
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 15px;
  flex-shrink: 0;
}

.cookie-btn-accept {
  padding: 10px 28px !important;
  font-size: 0.75rem !important;
}

.cookie-btn-reject {
  padding: 10px 28px !important;
  font-size: 0.75rem !important;
  border-color: #ddd !important;
  color: var(--text-light) !important;
}

.cookie-btn-reject:hover {
  background-color: #f5f5f5 !important;
  color: var(--text-dark) !important;
}

@media (max-width: 992px) {
  .cookie-container {
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .cookie-banner {
    padding: 30px 0;
  }
  .cookie-container {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  .cookie-buttons {
    width: 100%;
    justify-content: center;
  }
  .cookie-buttons .btn {
    flex: 1;
    max-width: 150px;
  }
}
