:root{
  --bg: #f7f2ec;
  --bg-soft: #f2ebe3;
  --bg-warm: linear-gradient(180deg, #f8f3ee 0%, #efe4d7 100%);
  --white: #ffffff;
  --text: #2d241f;
  --text-soft: #5f5148;
  --heading: #211914;
  --accent: #b97b49;
  --accent-dark: #8e5d35;
  --dark: #2a201b;
  --dark-soft: #352925;
  --border: rgba(45, 36, 31, 0.08);
  --shadow: 0 15px 40px rgba(0,0,0,0.10);
  --shadow-soft: 0 10px 30px rgba(0,0,0,0.08);
  --radius: 18px;
  --radius-sm: 12px;
  --header-height: 86px;
}

*{
  box-sizing: border-box;
}

html{
  scroll-behavior: smooth;
}

body{
  margin: 0;
  font-family: Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
}

img{
  max-width: 100%;
  display: block;
}

a{
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea{
  font: inherit;
}

section{
  scroll-margin-top: 100px;
}

.container{
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

/* Header */

.site-header{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.04);
  transition: all 0.3s ease;
}

.site-header.scrolled{
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  background: rgba(255,255,255,0.92);
}

.header-inner{
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo{
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.logo img{
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.logo span{
  font-size: 18px;
  font-weight: 700;
  color: var(--heading);
  white-space: nowrap;
}

.nav-menu{
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-menu a{
  position: relative;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  transition: color 0.25s ease;
}

.nav-menu a::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.25s ease;
}

.nav-menu a:hover,
.nav-menu a.active{
  color: var(--accent-dark);
}

.nav-menu a:hover::after,
.nav-menu a.active::after{
  width: 100%;
}

.hamburger{
  display: none;
  width: 46px;
  height: 46px;
  border: none;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.hamburger span{
  display: block;
  width: 24px;
  height: 2px;
  background: var(--heading);
  margin: 5px auto;
  transition: 0.3s ease;
}

.hamburger.open span:nth-child(1){
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2){
  opacity: 0;
}
.hamburger.open span:nth-child(3){
  transform: translateY(-7px) rotate(-45deg);
}

/* Hero */

.hero{
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background:
    linear-gradient(rgba(28,20,16,0.45), rgba(28,20,16,0.55)),
    url("Coffee Trailer Background.webp") center/cover no-repeat;
  color: var(--white);
  padding-top: var(--header-height);
}

.hero-overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.10), rgba(0,0,0,0.30));
}

.hero-inner{
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 80px 0 72px;
  display: flex;
  justify-content: center;
}

.hero-copy{
  max-width: 720px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.eyebrow{
  display: inline-block;
  margin: 0 0 18px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.92);
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero h1{
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.05;
  margin: 0 0 18px;
  color: var(--white);
  max-width: 10.5ch;
}

.hero-text{
  margin: 0 0 28px;
  max-width: 620px;
  font-size: 18px;
  color: rgba(255,255,255,0.92);
}

.hero-buttons{
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* Intro strip */

.intro-strip{
  margin-top: -42px;
  position: relative;
  z-index: 2;
}

.intro-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.intro-card{
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  border-radius: var(--radius);
  padding: 26px 24px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(255,255,255,0.35);
}

.intro-card h3{
  margin: 0 0 8px;
  color: var(--heading);
  font-size: 18px;
}

.intro-card p{
  margin: 0;
  color: var(--text-soft);
  font-size: 15px;
}

/* Sections */

.section{
  padding: 110px 0;
}

.section-soft{
  background: var(--bg);
}

.section-dark{
  background: linear-gradient(180deg, var(--dark) 0%, var(--dark-soft) 100%);
  color: rgba(255,255,255,0.9);
}

.section-warm{
  background: var(--bg-warm);
}

.section-plain{
  background: #fbf8f4;
}

.section-contact{
  background: linear-gradient(180deg, #f6efe8 0%, #efe5da 100%);
}

.section-tag{
  margin: 0 0 12px;
  color: var(--accent-dark);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-heading{
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading h2,
.split-copy h2{
  margin: 0 0 16px;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.1;
  color: var(--heading);
}

.section-dark .section-heading h2{
  color: var(--white);
}

.section-intro,
.split-copy p{
  font-size: 17px;
  color: var(--text-soft);
}

.section-dark .section-intro{
  color: rgba(255,255,255,0.78);
}

.split-layout{
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.split-layout.reverse{
  grid-template-columns: 0.95fr 1.05fr;
}

.split-copy{
  max-width: 620px;
}

.split-copy p{
  margin: 0 0 16px;
}

.image-stack img{
  width: 100%;
  border-radius: 22px;
  box-shadow: var(--shadow);
  object-fit: cover;
  min-height: 430px;
}

.text-link{
  display: inline-block;
  margin-top: 10px;
  font-weight: 700;
  color: var(--accent-dark);
}

/* Buttons */

.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  box-shadow: 0 8px 18px rgba(0,0,0,0.08);
}

.btn:hover{
  transform: translateY(-2px);
  box-shadow: 0 14px 24px rgba(0,0,0,0.12);
}

.btn-primary{
  background: var(--accent);
  color: var(--white);
}

.btn-primary:hover{
  background: var(--accent-dark);
}

.btn-secondary{
  background: rgba(255,255,255,0.92);
  color: var(--heading);
}

.full-width{
  width: 100%;
}

/* Menu */
.menu-grid{
  display: flex;
  justify-content: center;
  align-items: center;
}

.menu-card img{
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 14px;
  background: white;
  box-shadow: 0 0px 8px rgb(243, 243, 243);
}

.menu-card{
  padding: 20px;
}

/* Filters */

.filters{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 26px;
}

.filter-btn{
  border: none;
  background: rgba(255,255,255,0.7);
  color: var(--text);
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.25s ease;
  box-shadow: 0 6px 16px rgba(0,0,0,0.05);
}

.filter-btn:hover,
.filter-btn.active{
  background: var(--accent);
  color: var(--white);
}

/* Slideshow Gallery */

.slideshow-gallery{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.slideshow-card{
  background: rgba(255,255,255,0.78);
  border-radius: 24px;
  padding: 18px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(255,255,255,0.65);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.slideshow-card:hover{
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.slideshow-header{
  padding: 4px 4px 16px;
}

.slideshow-header h3{
  margin: 0 0 6px;
  font-size: 22px;
  color: var(--heading);
}

.slideshow-header p{
  margin: 0;
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.5;
}

.slider{
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: #ddd;
}

.slides{
  position: relative;
  height: 360px;
}

.slide{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 0.45s ease, transform 0.45s ease;
  cursor: pointer;
}

.slide.active{
  opacity: 1;
  transform: scale(1);
}

.slide-btn{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;

  width: 44px;
  height: 44px;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 0;
  border: none;
  border-radius: 50%;

  background: rgba(255,255,255,0.86);
  color: var(--heading);

  font-size: 26px;
  line-height: 1;

  cursor: pointer;

  box-shadow: 0 8px 20px rgba(0,0,0,0.14);
  transition: 0.25s ease;
}

.slide-btn span{
  transform: translateY(-1px);
}

.slide-btn:hover{
  background: var(--accent);
  color: white;
}

.slide-btn.prev{
  left: 12px;
}

.slide-btn.next{
  right: 12px;
}

.slider-dots{
  display: flex;
  justify-content: center;
  gap: 8px;
  padding-top: 16px;
}

.slider-dot{
  width: 10px;
  height: 10px;
  min-width: 10px;
  min-height: 10px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(45,36,31,0.25);
  cursor: pointer;
  transition: 0.25s ease;
  aspect-ratio: 1 / 1;
}

.slider-dot.active{
  background: var(--accent);
  transform: scale(1.25);
}

@media (max-width: 1020px){
  .slideshow-gallery{
    grid-template-columns: 1fr;
    max-width: 680px;
    margin: 0 auto;
  }

  .slides{
    height: 420px;
  }
}

@media (max-width: 560px){
  .slideshow-card{
    padding: 14px;
  }

  .slides{
    height: 300px;
  }

  .slide-btn{
    width: 38px;
    height: 38px;
    font-size: 24px;
  }
}

.slide{
  cursor: pointer;
}

.image-modal{
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(14, 10, 8, 0.94);
  z-index: 3000;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.image-modal.open{
  display: flex;
}

.image-modal img{
  max-width: 92vw;
  max-height: 86vh;
  object-fit: contain;
  border-radius: 16px;
  box-shadow: 0 18px 50px rgba(0,0,0,0.35);
}

.modal-close,
.modal-nav{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);

  width: 54px;
  height: 54px;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 0;
  border: none;
  border-radius: 50%;

  background: rgba(255,255,255,0.14);
  color: white;

  cursor: pointer;
  z-index: 3001;

  transition: 0.25s ease;
}

.modal-nav span{
  display: flex;
  align-items: center;
  justify-content: center;

  transform: translateY(-2px);

  line-height: 1;
  font-size: 34px;
}
.modal-close{
  top: 18px;
  right: 18px;
  width: 48px;
  height: 48px;
  font-size: 32px;
}

.modal-nav{
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  font-size: 36px;
}

.modal-prev{
  left: 18px;
}

.modal-next{
  right: 18px;
}

.modal-close:hover,
.modal-nav:hover{
  background: rgba(255,255,255,0.24);
}

/* Calendar */

.calendar-card{
  background: var(--white);
  padding: 12px;
  border-radius: 22px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.calendar-card iframe{
  width: 100%;
  height: 520px;
  border: 0;
  border-radius: 16px;
}

/* Contact */

.contact-wrap{
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: start;
}

.contact-form,
.contact-card{
  background: rgba(255,255,255,0.78);
  backdrop-filter: blur(8px);
  border-radius: 22px;
  box-shadow: var(--shadow-soft);
}

.contact-form{
  padding: 28px;
}

.contact-form input,
.contact-form textarea{
  width: 100%;
  border: 1px solid rgba(45, 36, 31, 0.10);
  background: rgba(255,255,255,0.92);
  border-radius: 14px;
  padding: 15px 16px;
  margin-bottom: 14px;
  color: var(--text);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.contact-form input:focus,
.contact-form textarea:focus{
  outline: none;
  border-color: rgba(185,123,73,0.55);
  box-shadow: 0 0 0 4px rgba(185,123,73,0.10);
}

.form-btn{
  width: 100%;
  border: none;
  cursor: pointer;
}

.contact-side{
  display: grid;
  gap: 18px;
}

.contact-card{
  padding: 24px;
}

.contact-card h3{
  margin: 0 0 10px;
  color: var(--heading);
}

.contact-card p{
  margin: 0 0 16px;
  color: var(--text-soft);
}

.contact-card ul{
  margin: 0;
  padding-left: 18px;
  color: var(--text-soft);
}

.contact-card li + li{
  margin-top: 8px;
}

/* Lightbox */

.lightbox{
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(14, 10, 8, 0.92);
  z-index: 2000;
  padding: 24px;
}

.lightbox.open{
  display: flex;
}

.lightbox-content{
  max-width: 1000px;
  width: 100%;
  text-align: center;
}

.lightbox img{
  width: auto;
  max-width: 100%;
  max-height: 75vh;
  margin: 0 auto;
  border-radius: 18px;
  box-shadow: 0 16px 45px rgba(0,0,0,0.35);
}

.lightbox-caption{
  margin: 14px 0 0;
  color: rgba(255,255,255,0.86);
  font-size: 15px;
}

.lightbox-close,
.lightbox-nav{
  position: absolute;
  border: none;
  background: rgba(255,255,255,0.10);
  color: var(--white);
  border-radius: 999px;
  cursor: pointer;
  transition: 0.25s ease;
}

.lightbox-close:hover,
.lightbox-nav:hover{
  background: rgba(255,255,255,0.18);
}

.lightbox-close{
  top: 18px;
  right: 18px;
  width: 48px;
  height: 48px;
  font-size: 30px;
}

.lightbox-nav{
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  font-size: 26px;
}

.lightbox-nav.prev{
  left: 18px;
}

.lightbox-nav.next{
  right: 18px;
}

/* Floating WhatsApp */

.floating-whatsapp{
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 1200;
  background: #25D366;
  color: var(--white);
  padding: 14px 18px;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 12px 28px rgba(0,0,0,0.18);
  transition: 0.25s ease;
}

.floating-whatsapp:hover{
  transform: translateY(-2px);
}

/* Footer */

.site-footer{
  background: #1d1613;
  color: rgba(255,255,255,0.8);
  padding: 26px 0;
}

.footer-inner{
  text-align: center;
}

/* Reveal */

.reveal{
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.show{
  opacity: 1;
  transform: translateY(0);
}

/* Mobile */

@media (max-width: 960px){
  .intro-grid,
  .split-layout,
  .split-layout.reverse,
  .contact-wrap,
  .menu-grid{
    grid-template-columns: 1fr;
  }

  .gallery-item:nth-child(n){
    grid-column: span 6;
  }

  .split-copy{
    max-width: none;
  }

  .calendar-card iframe{
    height: 460px;
  }
}

@media (max-width: 768px){
  :root{
    --header-height: 78px;
  }

  html{
    scroll-behavior: smooth;
  }
  
  .logo span{
    font-size: 15px;
  }

  .hamburger{
    display: block;
  }

  .nav-menu{
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .nav-menu.open{
    max-height: 360px;
  }

  .nav-menu a{
    width: 100%;
    padding: 16px 20px;
    border-top: 1px solid rgba(0,0,0,0.05);
  }

  .hero{
    min-height: 82vh;
  }

  .hero-inner{
    padding: 64px 0 54px;
  }

  .hero-buttons{
    flex-direction: column;
    align-items: stretch;
    max-width: 320px;
  }

  .btn{
    width: 100%;
  }

  .section{
    padding: 86px 0;
  }

  .intro-strip{
    margin-top: -28px;
  }

  .gallery-grid{
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-item:nth-child(n){
    grid-column: span 1;
  }

  .gallery-item img{
    min-height: 220px;
  }

  .lightbox{
    padding: 16px;
  }

  .lightbox-nav{
    width: 44px;
    height: 44px;
    font-size: 20px;
  }

  .lightbox-nav.prev{
    left: 10px;
  }

  .lightbox-nav.next{
    right: 10px;
  }

  .floating-whatsapp{
    right: 14px;
    bottom: 14px;
    padding: 13px 16px;
    font-size: 14px;
  }
}

@media (max-width: 520px){
  .container{
    width: min(1120px, calc(100% - 22px));
  }

  .hero h1{
    max-width: none;
  }

  .intro-card,
  .contact-form,
  .contact-card{
    border-radius: 18px;
  }

  .gallery-grid{
    grid-template-columns: 1fr;
  }
}