:root{
  --burgundy: #6d1b2a;
  --forest: #164b36;
  --accent: #b88b80;
  --bg: #fffefc;
  --max-width: 1100px;
  --radius: 10px;
  --font-sans: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:var(--font-sans);
  color:#222;
  background:linear-gradient(180deg, #ffffff 0%, var(--bg) 100%);
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  line-height:1.5;
}

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

/* Header */
.site-header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:18px 24px;
  background:transparent;
}
.brand{
  display:flex;align-items:center;gap:14px;
}
.brand img{width:64px;height:64px}
.brand h1{margin:0;font-size:20px}
.nav{
  display:flex;gap:20px;
}
.nav a{
  color:var(--forest);
  text-decoration:none;
  font-weight:600;
  padding:8px 10px;
  border-radius:6px;
}
.nav a:hover{background:rgba(22,75,54,0.06)}
.cta{
  background:var(--burgundy);
  color:white;padding:8px 14px;border-radius:8px;text-decoration:none;font-weight:700;
}

/* Mobile nav controls */
.menu-toggle{display:none;background:none;border:1px solid rgba(0,0,0,0.06);padding:8px;border-radius:8px}
.menu-toggle svg{width:24px;height:24px;display:block}

/* Hero */
.hero{
  display:flex;align-items:center;justify-content:space-between;gap:24px;padding:48px 0;
}
.hero .left{flex:1}
.hero .right{flex:1;display:flex;align-items:center;justify-content:center}
.hero h2{color:var(--burgundy);margin:0;font-size:34px}
.hero p{margin-top:12px;color:#444}

/* Cards */
.grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(240px,1fr));gap:20px;margin-top:24px}
.card{background:#fff;padding:18px;border-radius:12px;box-shadow:0 6px 18px rgba(12,12,12,0.06)}
.card h3{margin:0 0 8px 0;color:var(--forest)}

/* Footer */
.site-footer{margin-top:48px;padding:24px 0;text-align:center;color:#666;font-size:14px}

/* Gallery */
.gallery-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:10px}
.gallery-grid img{width:100%;height:160px;object-fit:cover;border-radius:8px;cursor:pointer;display:block}

/* Countdown */
.countdown{display:flex;gap:12px;align-items:center;margin-top:12px}
.countdown .item{background:#fff;padding:12px;border-radius:8px;min-width:70px;text-align:center;box-shadow:0 6px 18px rgba(0,0,0,0.04)}
.countdown .label{display:block;font-size:12px;color:#666;margin-top:6px}

/* Responsive: hamburger on tablet & below */
@media (max-width:1024px){
  .nav{display:none}
  .menu-toggle{display:inline-block}
  .hero{flex-direction:column-reverse;text-align:center}
  .gallery-grid{grid-template-columns:repeat(2,1fr)}
}

/* Small screens */
@media (max-width:480px){
  .gallery-grid img{height:120px}
  .brand h1{font-size:18px}
}

/* Lightbox modal */
.lightbox{
  position:fixed;inset:0;display:none;align-items:center;justify-content:center;background:rgba(0,0,0,0.7);z-index:90;
}
.lightbox.open{display:flex}
.lightbox img{max-width:90%;max-height:85%;border-radius:10px;box-shadow:0 10px 40px rgba(0,0,0,0.5)}
.lightbox .close{position:absolute;right:18px;top:18px;background:transparent;border:none;color:white;font-size:28px}

/* Simple utility */
.center{text-align:center}
.small{font-size:14px;color:#666}
.lead{font-size:18px;color:#444}
