:root {
  --charcoal: #1f1f1f;
  --off-white: #f5f4f2;
  --gold: #cfa15a;
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Nunito', sans-serif;
  background: var(--off-white);
  color: var(--charcoal);
  line-height: 1.5;
}

/* Header */
.site-header {
  display: flex;
  align-items: center;
  padding: 0.75rem 1rem;
  background: var(--off-white);
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid var(--gold);
}
.site-header__menu {
  font-size: 1.5rem;
  background: none;
  border: none;
  color: var(--charcoal);
  cursor: pointer;
}
.site-header__branding {
  display: flex;
  align-items: center;
  margin: 0 auto;
}
.site-header__logo {
  height: 2rem;
}
.site-header__brandname {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.5rem;
  color: var(--charcoal);
  margin-left: 0.5rem;
}
.site-header__spacer {
  width: 1.5rem;
}

/*────────────────────────────────────────────────────────────────────────
  DRAWER OVERLAY
────────────────────────────────────────────────────────────────────────*/
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
  z-index: 1000;
  display: none;
  transition: opacity 0.3s ease;
}
.drawer-overlay.active {
  display: block;
}

/*────────────────────────────────────────────────────────────────────────
  DRAWER (SIDE MENU)
────────────────────────────────────────────────────────────────────────*/
.drawer {
  position: fixed;
  top: 0;
  left: -100%;
  width: 85%;
  max-width: 320px;
  height: 100%;
  background: var(--off-white);
  color: var(--charcoal);
  transition: left 0.3s ease;
  z-index: 1001;
  display: flex;
  flex-direction: column;
  padding: 1.5rem 0;
  box-shadow: 2px 0 12px rgba(0, 0, 0, 0.1);
  border-right: 1px solid rgba(0, 0, 0, 0.1);
}
.drawer--open {
  left: 0 !important;
}
.drawer__close {
  font-size: 1.5rem;
  background: none;
  border: none;
  color: var(--charcoal);
  cursor: pointer;
  padding: 0.5rem 1.5rem;
  align-self: flex-end;
}
.drawer__divider {
  height: 1px;
  background: rgba(0, 0, 0, 0.2);
  margin: 0.5rem 0 1rem;
}
.drawer__nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.drawer__nav a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 1.125rem;
  color: var(--charcoal);
  text-decoration: none;
  position: relative;
  transition: background 0.2s, color 0.2s;
}
.drawer__nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 1.5rem;
  right: 1.5rem;
  height: 1px;
  background: rgba(0, 0, 0, 0.1);
}
.drawer__nav a:hover {
  background: rgba(207, 161, 90, 0.1);
}

/* Gallery */
.gallery {
  padding: 2rem 1rem;
  background: var(--off-white);
}
.section-heading {
  font-family: 'Raleway', sans-serif;
  font-size: 1.75rem;
  text-align: center;
  margin: 2rem 0 1rem;
  position: relative;
}
.section-heading::after {
  content: '';
  display: block;
  width: 4rem;
  height: 0.25rem;
  background: var(--gold);
  margin: 0.5rem auto 0;
  border-radius: 2px;
}

/* Carousel */
.carousel {
  position: relative;
  overflow: hidden;
  max-width: 900px;
  margin: 1.5rem auto;
  padding: 0 1rem;
}
.carousel-track-wrapper {
  overflow: hidden;
}
.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
}
.carousel-slide {
  flex: 0 0 100%;
  text-align: center;
}
.carousel-slide img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 0.5rem;
  box-shadow: 0 3px 6px rgba(0,0,0,0.1);
}
.carousel-slide figcaption {
  margin-top: 0.5rem;
  font-weight: 600;
  color: var(--charcoal);
}

/* Arrows */
.carousel button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--gold);
  color: #fff;
  border: none;
  font-size: 1.5rem;
  padding: 0.5rem;
  cursor: pointer;
  opacity: 0.8;
  z-index: 1;
}
.carousel .prev {
  left: 1rem;
}
.carousel .next {
  right: 1rem;
}

/* Mobile tweaks */
@media (max-width: 480px) {
  .carousel {
    padding: 0 0.75rem;
  }
  .carousel-slide img {
    border-radius: 0.25rem;
  }
  .carousel button {
    font-size: 1.2rem;
    padding: 0.25rem;
  }
}


/* —— Footer Base —— */
.site-footer {
  background-color: #1e1e1e;
  color: #e0e0e0;
  font-family: 'Nunito', sans-serif;
  line-height: 1.5;
}

/* Grid container */
.footer-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: 3rem 1rem 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

/* Column headings */
.footer-col h3,
.footer-col h4 {
  font-family: 'Raleway', sans-serif;
  color: #fff;
  margin-bottom: 0.75rem;
}

/* About column: remove light background */
.footer-col.about {
  background: none;
  box-shadow: none;
  padding: 0;
}
.footer-logo {
  font-size: 1.75rem;
}

/* Copy text and list resets */
.footer-col p,
.footer-col ul {
  font-size: 0.9rem;
  margin: 0.5rem 0;
  color: #e0e0e0;
}
.footer-col ul {
  list-style: none;
  padding: 0;
}
.footer-col ul li {
  margin-bottom: 0.5rem;
}

/* Links: neutral tint, no underline */
.footer-col a {
  color: #e0e0e0;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col a:hover {
  color: #c89c5d;
}

/* Bottom bar */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1rem;
  text-align: center;
}
.footer-bottom p {
  margin: 0.5rem 0 0;
  font-size: 0.8rem;
  color: #a5a5a5;
}

/* Social icons */
.social-icons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 0.5rem;
}
.social-icons a {
  font-size: 1.25rem;
  color: #e0e0e0;
  transition: transform 0.2s, color 0.2s;
}
.social-icons a:hover {
  transform: translateY(-2px);
  color: #c89c5d;
}

/* Desktop layout */
@media (min-width: 768px) {
  .footer-container {
    grid-template-columns: repeat(3, 1fr);
    text-align: left;
  }
  .footer-col.links {
    padding: 0 2rem;
  }
}