:root {
  --color-charcoal: #2e2e2e;
  --color-rust: #b7410e;
  --color-moss: #556b2f;
  --color-tan: #d2b48c;
  --font-primary: 'Special Elite', cursive;
  --font-secondary: 'Rock Salt', cursive;
  --max-width: 1200px;
  --grid-gap: 1.5rem;
}

/* Reset & Base */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-primary);
  background: var(--color-tan);
  color: var(--color-charcoal);
  line-height: 1.6;
}
a {
  color: var(--color-rust);
  text-decoration: none;
}
h1, h2, h3, h4 {
  font-family: var(--font-secondary);
  margin-bottom: .5rem;
}
h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.2rem; }

/* Layout Helpers */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1rem;
}
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--grid-gap);
}
.grid .card {
  background: var(--color-tan);
  border: 2px solid var(--color-rust);
  padding: 1rem;
  position: relative;
  overflow: hidden;
}
.grid .card img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
.grid .card h4 {
  margin-top: .5rem;
}

/* Header & Nav */
.site-header {
  background: var(--color-charcoal);
  padding: .5rem 0;
}
.nav {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}
.nav a {
  color: var(--color-tan);
  font-size: 1rem;
  text-transform: uppercase;
}

/* Hero */
.hero {
  position: relative;
  background: url('images/image_20.jpg') center/cover no-repeat;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--color-tan);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.4);
}
.hero-content {
  position: relative;
  z-index: 1;
}
.hero-tagline {
  margin: 1rem 0;
  font-size: 1.2rem;
}
.cta-btn {
  display: inline-block;
  padding: .75rem 1.5rem;
  background: var(--color-rust);
  color: #fff;
  border: none;
  cursor: pointer;
  font-family: var(--font-secondary);
  transition: background .3s;
}
.cta-btn:hover {
  background: var(--color-moss);
}

/* Sections */
section {
  padding: 4rem 1rem;
  position: relative;
}
section::before {
  content: "";
  position: absolute;
  top: -20px;
  left: 0;
  right: 0;
  height: 40px;
  background: url('images/image_21.jpg') repeat-x;
  background-size: cover;
  transform: rotate(180deg);
}

/* About */
.about-map {
  position: relative;
  margin-bottom: 2rem;
}
.map-overlay {
  position: absolute;
  inset: 0;
  background: rgba(46,46,46,.3);
  opacity: 1;
  transition: opacity .3s;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: var(--font-secondary);
}
.about-map:hover .map-overlay { opacity: 1; }

/* Team */
.team .grid .card {
  border-style: dashed;
}

/* Gallery Slideshow */
.slideshow {
  position: relative;
  overflow: hidden;
  max-width: 100%;
}
.slide {
  display: none;
  width: 100%;
}
.slide.active { display: block; }
.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,.5);
  color: #fff;
  border: none;
  padding: .5rem;
  cursor: pointer;
  font-size: 2rem;
}
.prev { left: .5rem; }
.next { right: .5rem; }

/* Testimonials Carousel */
.carousel {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.testimonial { display: none; }
.testimonial.active { display: block; }
.quote {
  font-style: italic;
  margin-bottom: .5rem;
}
.dots {
  margin-top: 1rem;
}
.dot {
  height: 12px;
  width: 12px;
  margin: 0 4px;
  background: var(--color-moss);
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
  opacity: .5;
}
.dot.active { opacity: 1; }

/* Newsletter Sidebar */
.newsletter .sidebar {
  background: var(--color-charcoal);
  color: var(--color-tan);
  padding: 2rem;
  max-width: 400px;
  margin: 0 auto;
}
.newsletter .cta-btn {
  background: var(--color-moss);
}

/* Contact */
.contact-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.contact-columns .col {
  flex: 1 1 30%;
  background: var(--color-tan);
  border: 2px solid var(--color-rust);
  padding: 1rem;
}

/* FAQ Accordion */
.faq-item {
  margin-bottom: 1rem;
}
.faq-question {
  width: 100%;
  text-align: left;
  background: var(--color-rust);
  color: #fff;
  padding: .75rem;
  border: none;
  cursor: pointer;
  font-family: var(--font-secondary);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
  background: var(--color-tan);
  padding: 0 .75rem;
}
.faq-answer p { margin: .75rem 0; }

/* Footer */
.site-footer {
  background: var(--color-charcoal);
  color: var(--color-tan);
  text-align: center;
  padding: 1rem;
}

/* Responsive */
@media (max-width: 900px) {
  .grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
  .contact-columns {
    flex-direction: column;
  }
}
@media (max-width: 600px) {
  .nav {
    flex-direction: column;
    gap: .5rem;
  }
  .hero h1 { font-size: 2rem; }
}

/* Grain / Noise Effect */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: url('images/image_22.jpg') repeat;
  opacity: .04;
  mix-blend-mode: multiply;
  z-index: -1;
}


**JavaScript (script.js)**

javascript
/* Visible state helpers */
+ .animate-fade-in-up.visible,
+ .animate-fade-in-left.visible,
+ .animate-fade-in-right.visible,
+ .animate-bounce-y.visible,
+ .section-scroll-animate.visible,
+ .text-animate-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Universal Icon Fixes for Buttons */
button svg, .carousel-next svg, .carousel-prev svg, .slider-next svg, .slider-prev svg,
.next svg, .prev svg, .tab-button svg, .tab-btn svg {
    display: inline-block;
    vertical-align: middle;
    pointer-events: none;
    width: 1em;
    height: 1em;
    fill: currentColor;
}

button i, .carousel-next i, .carousel-prev i, .slider-next i, .slider-prev i,
.next i, .prev i, .tab-button i, .tab-btn i {
    display: inline-block;
    vertical-align: middle;
    pointer-events: none;
    font-style: normal;
}

button .icon, .carousel-next .icon, .carousel-prev .icon,
.slider-next .icon, .slider-prev .icon, .tab-button .icon {
    display: inline-block;
    vertical-align: middle;
    pointer-events: none;
}

/* Ensure carousel buttons are clickable even with icons */
.carousel-next, .carousel-prev, .slider-next, .slider-prev,
.next, .prev, .next-btn, .prev-btn {
    cursor: pointer;
    position: relative;
}

.carousel-next *, .carousel-prev *, .slider-next *, .slider-prev *,
.next *, .prev *, .next-btn *, .prev-btn * {
    pointer-events: none;
}

/* Tab button icon fixes */
.tab-button, .tab-btn, .tab {
    cursor: pointer;
    position: relative;
}

.tab-button *, .tab-btn *, .tab * {
    pointer-events: none;
}

/* Ensure icons don't block clicks */
button > svg, button > i, button > .icon,
.carousel-next > svg, .carousel-prev > svg,
.tab-button > svg, .tab-button > i {
    pointer-events: none !important;
}

/* Safe visibility overrides (auto-added) */
:root, html, body, main, header, footer, section, .container, .content {
  opacity: 1 !important;
  visibility: visible !important;
}

/* Accessibility focus outlines */
:focus{outline:2px solid #5ac8fa;outline-offset:2px;}
:focus:not(:focus-visible){outline:none;}
