:root {
  --bg: #fffaf5;
  --surface: #ffffff;
  --surface-soft: #f8efe8;
  --text: #241615;
  --muted: #6f5c57;
  --primary: #7d1023;
  --primary-dark: #4f0715;
  --accent: #c79a39;
  --accent-strong: #a37418;
  --line: rgba(80, 42, 38, 0.16);
  --shadow: 0 18px 45px rgba(48, 18, 12, 0.13);
  --header-bg: rgba(255, 250, 245, 0.93);
  --hero-shade: rgba(45, 9, 14, 0.68);
  --hero-shade-soft: rgba(45, 9, 14, 0.25);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.6;
}

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

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

.icon {
  width: 1.05em;
  height: 1.05em;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.btn .icon,
.site-nav .icon,
.footer-details .icon,
.contact-details .icon,
.whatsapp-float .icon {
  margin-right: 7px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 24px;
  min-height: 78px;
  padding: 14px 5vw;
  background: var(--header-bg);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 196px;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #ffffff;
  background: var(--primary);
  border: 2px solid var(--accent);
  border-radius: 50%;
  font-weight: 700;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.1;
}

.brand strong {
  font-size: 1.1rem;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
}

.site-nav {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 13px;
  border-radius: 999px;
  color: var(--muted);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.92rem;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--text);
  background: var(--surface-soft);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 50%;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--text);
}

.hero,
.page-hero {
  position: relative;
  min-height: calc(100vh - 78px);
  display: flex;
  align-items: center;
  padding: 90px 5vw 120px;
  color: #ffffff;
  background-position: center;
  background-size: cover;
}

.page-hero {
  min-height: 520px;
}

.home-hero {
  background-image: url("assets/tent-entry-day.jpeg");
}

.services-hero {
  background-image: url("assets/tent-corridor-night.jpeg");
}

.gallery-hero {
  background-image: url("assets/stage-seating-ground.jpeg");
}

.about-hero {
  background-image: url("assets/tent-corridor-night.jpeg");
}

.contact-hero {
  background-image: url("assets/tent-entry-day.jpeg");
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, var(--hero-shade), var(--hero-shade-soft)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--accent);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-content .eyebrow,
.page-hero .eyebrow {
  color: #f6d073;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
}

h1 {
  max-width: 800px;
  font-size: 4.4rem;
}

h2 {
  font-size: 2.45rem;
}

h3 {
  font-size: 1.35rem;
}

.hero-content p:not(.eyebrow) {
  max-width: 650px;
  margin: 22px 0 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.12rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
  cursor: pointer;
}

.btn.primary {
  color: #ffffff;
  background: var(--primary);
  border-color: var(--accent);
}

.btn.secondary {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.45);
}

.text-link {
  color: var(--primary);
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
  border-bottom: 2px solid var(--accent);
}

.intro-band,
.cta-strip,
.stats-band {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 34px;
  align-items: center;
  padding: 58px 5vw;
  background: var(--primary-dark);
  color: #ffffff;
}

.intro-band {
  margin-top: -72px;
  position: relative;
  z-index: 2;
  width: min(1180px, 90vw);
  margin-left: auto;
  margin-right: auto;
  border-top: 4px solid var(--accent);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.intro-band h2,
.cta-strip h2 {
  font-size: 2rem;
}

.intro-band p:not(.eyebrow),
.cta-strip p:not(.eyebrow) {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-family: Arial, Helvetica, sans-serif;
}

.section-wrap,
.package-band {
  padding: 86px 5vw;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading h2 {
  max-width: 720px;
}

.card-grid {
  display: grid;
  gap: 22px;
}

.card-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card,
.package-card,
.value-card,
.contact-panel,
.contact-details {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.feature-card:hover,
.package-card:hover,
.value-card:hover,
.contact-panel:hover,
.contact-details:hover,
.gallery-item:hover {
  transform: translateY(-8px);
  border-color: rgba(199, 154, 57, 0.55);
  box-shadow: 0 26px 58px rgba(48, 18, 12, 0.22);
}

.feature-card {
  overflow: hidden;
}

.feature-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.feature-card h3,
.feature-card p,
.package-card,
.value-card {
  padding-left: 22px;
  padding-right: 22px;
}

.feature-card h3 {
  display: flex;
  align-items: center;
  gap: 9px;
  padding-top: 22px;
}

.card-icon {
  width: 1.15em;
  height: 1.15em;
  color: var(--accent-strong);
}

.feature-card p,
.package-card p,
.value-card p {
  color: var(--muted);
  font-family: Arial, Helvetica, sans-serif;
}

.feature-card p {
  padding-bottom: 20px;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 0;
  align-items: stretch;
  background: var(--surface-soft);
}

.split-media img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.split-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 72px 5vw;
}

.split-copy p:not(.eyebrow),
.check-list {
  color: var(--muted);
  font-family: Arial, Helvetica, sans-serif;
}

.check-list {
  padding-left: 20px;
  margin: 22px 0 26px;
}

.check-list li {
  margin: 8px 0;
}

.cta-strip {
  grid-template-columns: 1fr auto;
}

.service-list {
  display: grid;
  gap: 16px;
}

.service-row {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 28px;
  padding: 30px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.service-row p {
  margin: 0;
  color: var(--muted);
  font-family: Arial, Helvetica, sans-serif;
}

.service-number {
  color: var(--accent-strong);
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
}

.package-band {
  background: var(--surface-soft);
}

.package-card,
.value-card {
  padding-top: 28px;
  padding-bottom: 26px;
}

.package-card.highlighted {
  border-color: var(--accent);
  outline: 3px solid rgba(199, 154, 57, 0.22);
}

.gallery-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.filter-button {
  min-height: 42px;
  padding: 10px 18px;
  color: var(--text);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
}

.filter-button.active {
  color: #ffffff;
  background: var(--primary);
  border-color: var(--accent);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: 16px;
}

.gallery-item {
  position: relative;
  min-height: 280px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--surface-soft);
  border: 1px solid transparent;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.gallery-item.hidden {
  display: none;
}

.gallery-item.wide {
  grid-column: span 2;
}

.gallery-item.tall {
  grid-row: span 2;
}

.gallery-item img,
.gallery-item video {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  background: #160c0b;
}

.gallery-item.video-item video {
  object-fit: contain;
}

.gallery-item img {
  transition: transform 240ms ease;
}

.gallery-item:hover img {
  transform: scale(1.035);
}

.gallery-item figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  max-width: calc(100% - 28px);
  padding: 8px 12px;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.58);
  border-radius: 999px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.86rem;
}

.gallery-item.video-item figcaption {
  top: 14px;
  bottom: auto;
}

.about-story {
  background: var(--bg);
}

.stats-band {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  background: var(--primary);
}

.stats-band div {
  display: grid;
  gap: 6px;
}

.stats-band strong {
  color: #ffffff;
  font-size: 1.55rem;
}

.stats-band span {
  color: rgba(255, 255, 255, 0.78);
  font-family: Arial, Helvetica, sans-serif;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: 24px;
}

.contact-panel,
.contact-details {
  padding: 32px;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 24px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
}

.contact-form .full {
  grid-column: 1 / -1;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  color: var(--text);
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
  font-weight: 400;
}

textarea {
  resize: vertical;
}

.form-status {
  grid-column: 1 / -1;
  min-height: 24px;
  margin: 0;
  color: var(--primary);
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
}

.contact-details {
  display: grid;
  gap: 20px;
  align-content: start;
}

.contact-details a,
.contact-details p:not(.eyebrow) {
  color: var(--muted);
  font-family: Arial, Helvetica, sans-serif;
}

.contact-details a {
  color: var(--primary);
  font-weight: 700;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr 1.15fr auto;
  align-items: start;
  gap: 24px;
  padding: 34px 5vw;
  color: #ffffff;
  background: #160c0b;
}

.site-footer p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-family: Arial, Helvetica, sans-serif;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  color: rgba(255, 255, 255, 0.82);
  font-family: Arial, Helvetica, sans-serif;
}

.footer-details {
  display: grid;
  gap: 6px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.92rem;
  font-style: normal;
}

.footer-details span,
.footer-details a,
.contact-details a {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
  line-height: 1.45;
}

.footer-details a {
  color: #f6d073;
  font-weight: 700;
}

.footer-phone-list {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 4px 8px;
  align-items: center;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  color: #ffffff;
  background: #128c4a;
  border: 2px solid #d7b45a;
  border-radius: 999px;
  box-shadow: 0 12px 32px rgba(18, 140, 74, 0.28);
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
}

.call-float {
  position: fixed;
  left: 22px;
  bottom: 22px;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  color: #ffffff;
  background: var(--primary);
  border: 2px solid var(--accent);
  border-radius: 999px;
  box-shadow: 0 12px 32px rgba(125, 16, 35, 0.28);
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
}

.call-float .icon {
  margin-right: 7px;
}

@media (max-width: 960px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .brand {
    min-width: 0;
  }

  .nav-toggle {
    display: block;
    justify-self: end;
  }

  .site-nav {
    display: none;
    grid-column: 1 / -1;
    flex-direction: column;
    align-items: stretch;
    padding: 10px 0;
  }

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

  h1 {
    font-size: 3.25rem;
  }

  h2 {
    font-size: 2rem;
  }

  .intro-band,
  .cta-strip,
  .split-section,
  .service-row,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .card-grid.three,
  .stats-band,
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split-section.about-story .split-copy {
    order: 2;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 12px 18px;
  }

  .hero,
  .page-hero {
    min-height: 600px;
    padding: 74px 20px 96px;
  }

  .page-hero {
    min-height: 430px;
  }

  h1 {
    font-size: 2.45rem;
  }

  h2 {
    font-size: 1.72rem;
  }

  .hero-content p:not(.eyebrow) {
    font-size: 1rem;
  }

  .intro-band {
    width: calc(100% - 28px);
    padding: 34px 22px;
  }

  .section-wrap,
  .package-band,
  .split-copy,
  .cta-strip,
  .stats-band {
    padding: 54px 20px;
  }

  .card-grid.three,
  .stats-band,
  .gallery-grid,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .gallery-item.wide,
  .gallery-item.tall {
    grid-column: auto;
    grid-row: auto;
  }

  .split-media img {
    min-height: 340px;
  }

  .service-row,
  .contact-panel,
  .contact-details {
    padding: 24px;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    max-width: calc(100vw - 28px);
  }

  .call-float {
    left: 14px;
    bottom: 14px;
    max-width: calc(100vw - 28px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .feature-card,
  .package-card,
  .value-card,
  .contact-panel,
  .contact-details,
  .gallery-item,
  .gallery-item img {
    transition: none;
  }

  .feature-card:hover,
  .package-card:hover,
  .value-card:hover,
  .contact-panel:hover,
  .contact-details:hover,
  .gallery-item:hover {
    transform: none;
  }

  .gallery-item:hover img {
    transform: none;
  }
}
