:root {
  --cream: #f4eadb;
  --tan: #d9c2a0;
  --brown: #5a3b2a;
  --brown-deep: #2f211a;
  --red: #8a4636;
  --charcoal: #2a2724;
  --shadow: 0 18px 40px rgba(30, 21, 16, 0.15);
  --border: rgba(62, 42, 30, 0.16);
  --container: 1120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Trebuchet MS", Arial, sans-serif;
  color: var(--charcoal);
  background:
    linear-gradient(rgba(244, 234, 219, 0.95), rgba(244, 234, 219, 0.97)),
    url("Assets/Images/Logo1.jpg") center top / cover fixed;
  line-height: 1.6;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
.button {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  z-index: 100;
  padding: 0.75rem 1rem;
  background: var(--brown-deep);
  color: #fff;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(10px);
  background: rgba(244, 234, 219, 0.92);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 82px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  font-family: Rockwell, Georgia, serif;
  font-size: 1.15rem;
  color: var(--brown-deep);
}

.brand img {
  width: 58px;
  height: 58px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid rgba(90, 59, 42, 0.2);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.site-nav a {
  position: relative;
  font-weight: 600;
  color: var(--brown-deep);
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  padding: 0.7rem 1rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #fff8ef;
  color: var(--brown-deep);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 5rem 0 4rem;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(138, 70, 54, 0.2), transparent 35%),
    linear-gradient(135deg, rgba(90, 59, 42, 0.08), transparent 50%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  align-items: center;
}

.eyebrow,
.section-label {
  margin: 0 0 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--red);
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.1;
  color: var(--brown-deep);
}

h1,
h2 {
  font-family: Rockwell, Georgia, serif;
  letter-spacing: 0.02em;
}

h1 {
  font-size: clamp(3rem, 7vw, 5.6rem);
}

h2 {
  font-size: clamp(2rem, 3vw, 3rem);
}

.tagline {
  margin: 1rem 0;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  font-weight: 700;
  color: var(--brown);
}

.hero-text,
.section-intro,
.section-copy p,
.intro-grid p,
.contact-list p,
.show-card p,
.show-card span,
.feature-card p,
.contact-card li,
.site-footer p {
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible,
.gallery-item:hover,
.gallery-item:focus-visible,
.menu-toggle:hover,
.menu-toggle:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--brown-deep);
  color: #fff;
  box-shadow: var(--shadow);
}

.button-secondary {
  background: rgba(255, 248, 239, 0.82);
  border: 1px solid var(--border);
}

.hero-feature img,
.feature-card,
.show-card,
.video-frame,
.gallery-item,
.contact-card {
  box-shadow: var(--shadow);
}

.hero-feature img {
  width: 100%;
  border-radius: 24px;
  border: 4px solid rgba(255, 248, 239, 0.8);
  object-fit: cover;
}

.strip {
  padding: 1.5rem 0;
  background: rgba(90, 59, 42, 0.92);
  color: #f8f2e8;
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 2rem;
  align-items: center;
}

.strip h2,
.strip .section-label {
  color: #fff8ef;
}

.section {
  padding: 5.5rem 0;
}

.section-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: start;
}

.contact-grid {
  grid-template-columns: 1fr;
}

.feature-card,
.contact-card {
  padding: 1.5rem;
  border-radius: 24px;
  background: rgba(255, 248, 239, 0.9);
  border: 1px solid var(--border);
}

.feature-card img {
  width: 100%;
  margin-bottom: 1rem;
  border-radius: 18px;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.section-intro {
  max-width: 40rem;
}

.show-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.show-card {
  padding: 1.5rem;
  border-radius: 22px;
  background: #fff9f0;
  border: 1px solid var(--border);
}

.show-date {
  display: inline-flex;
  margin-bottom: 1rem;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  background: rgba(138, 70, 54, 0.12);
  font-weight: 700;
  color: var(--red);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.video-frame {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid var(--border);
  background: #1a1613;
  aspect-ratio: 16 / 9;
}

.video-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.gallery-item {
  padding: 0;
  border: 0;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  background: #fff;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
}

.contact-list a,
.footer-links a {
  color: var(--red);
}

.contact-card ul {
  margin: 1rem 0 1.5rem;
  padding-left: 1.2rem;
}

.site-footer {
  padding: 1.5rem 0;
  background: var(--brown-deep);
  color: #f8f2e8;
}

.footer-inner {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  align-items: center;
}

.footer-brand {
  margin-bottom: 0.2rem;
  font-family: Rockwell, Georgia, serif;
  font-size: 1.4rem;
}

.footer-links {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
}

.lightbox {
  width: min(92vw, 960px);
  padding: 1rem;
  border: 0;
  border-radius: 20px;
  background: #fffaf3;
}

.lightbox::backdrop {
  background: rgba(23, 17, 13, 0.82);
}

.lightbox img {
  width: 100%;
  max-height: 75vh;
  object-fit: contain;
  border-radius: 16px;
}

.lightbox-caption {
  margin: 0.9rem 0 0;
  font-weight: 600;
}

.lightbox-close {
  display: inline-flex;
  margin: 0 0 1rem auto;
  padding: 0.6rem 1rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #fff;
}

@media (max-width: 900px) {
  .hero-grid,
  .intro-grid,
  .section-grid,
  .contact-grid,
  .section-heading,
  .footer-inner,
  .show-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .section-heading,
  .footer-links {
    justify-content: start;
  }

  .hero {
    padding-top: 3.5rem;
  }
}

@media (max-width: 720px) {
  .header-inner {
    flex-wrap: wrap;
    padding: 0.8rem 0;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    padding: 0.5rem 0 0.75rem;
  }

  .site-nav.is-open {
    display: flex;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .gallery-item img {
    min-height: 180px;
  }
}
