:root {
  --bg: #120904;
  --panel: #2b150a;
  --panel-soft: #4d2409;
  --accent: #c66514;
  --accent-dark: #8d4207;
  --text: #f7efe8;
  --muted: #e8d6c7;
  --card: #ffffff;
  --card-text: #1f1a16;
  --border: rgba(255,255,255,0.16);
  --shadow: 0 18px 40px rgba(0,0,0,0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: #824004;
}

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

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

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(168, 83, 4, 0.96);
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.brand img {
  width: 46px;
  height: 46px;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-weight: 700;
}

.site-nav a {
  color: #f1dfd0;
  text-transform: uppercase;
  font-size: 0.95rem;
}

.hero {
  min-height: 72vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  padding: 72px 0;
}

.hero-panel {
  text-align: center;
  background: rgba(0,0,0,0.42);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 44px 28px;
}

.eyebrow {
  margin: 0 0 8px;
  font-size: clamp(1.5rem, 3.8vw, 2.6rem);
  font-style: italic;
  font-weight: 700;
}

.hero h1 {
  margin: 0;
  font-size: clamp(2.2rem, 6vw, 4.2rem);
  letter-spacing: 0.04em;
}

.hero-copy {
  margin: 18px auto 0;
  max-width: 760px;
  font-size: clamp(1rem, 2.4vw, 1.45rem);
  color: #fff;
}

.hero-actions {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 22px;
  border: 1px solid #fff;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(90deg, var(--accent), var(--accent-dark));
}

.btn-secondary {
  background: rgba(0,0,0,0.12);
}

.info-strip {
  background: rgba(252, 125, 8, 0.96);
  text-align: center;
  color: #fff;
  font-weight: 700;
}

.info-strip p {
  margin: 0;
  padding: 20px 0;
}

.hours-section {
  background: #9c4608;
  padding: 28px 0 12px;
}

.hours-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.hour-card {
  background: #d45e09;
  padding: 20px 14px;
  text-align: center;
  box-shadow: var(--shadow);
}

.hour-card strong {
  display: block;
  font-size: 1.9rem;
  margin-bottom: 8px;
}

.services-section {
  background: rgba(120, 60, 5, 0.93);
  padding: 44px 0;
}

.split-section,
.media-grid,
.visit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.services-panel {
  background: rgba(212, 94, 9, 0.72);
  padding: 24px;
}

.services-panel h2,
.team-section h2,
.reviews-section h2,
.visit-section h2 {
  margin-top: 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.service-list {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
}

.service-list li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.16);
  font-size: 1.1rem;
  font-weight: 700;
}

.service-list li::before {
  content: "✓";
  color: #000;
  margin-right: 12px;
  font-weight: 900;
}

.feature-panel img,
.media-card img,
.team-card img {
  width: 100%;
  object-fit: cover;
  border: 1px solid #000;
}

.feature-panel p {
  margin: 18px 0 0;
  text-align: center;
  font-weight: 700;
}

.media-section {
  background: rgba(0,0,0,0.16);
  padding: 32px 0;
}

.media-card iframe {
  width: 100%;
  min-height: 320px;
  border: 1px solid #000;
}

.team-section {
  background: #f9f9f9;
  color: var(--card-text);
  padding: 38px 0 20px;
}

.team-grid,
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.team-card,
.reviews-grid blockquote,
.cta-box,
.booking-card {
  background: var(--card);
  color: var(--card-text);
  box-shadow: var(--shadow);
}

.team-card {
  border: 4px solid #b6b6b6;
}

.team-card h3,
.team-card p {
  padding-left: 18px;
  padding-right: 18px;
}

.team-card h3 {
  text-align: center;
  margin: 22px 0 10px;
}

.team-card p:last-child {
  padding-bottom: 24px;
}

.reviews-section {
  background: #2e1205;
  padding: 42px 0;
}

.reviews-grid blockquote {
  margin: 0;
  padding: 24px;
  border-left: 4px solid var(--accent);
}

.reviews-grid p {
  margin-top: 0;
  color: #2d241d;
}

.reviews-grid cite {
  display: block;
  margin-top: 14px;
  font-style: normal;
  font-weight: 700;
}

.visit-section {
  background: #8b3f08;
  padding: 40px 0 60px;
}

.visit-grid {
  align-items: start;
}

.cta-box {
  padding: 28px;
  text-align: center;
}

.cta-box p {
  font-size: 1.35rem;
  margin-top: 0;
}

.booking-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, #472109, #120904);
}

.booking-wrap {
  width: min(560px, calc(100% - 32px));
}

.booking-card {
  padding: 32px;
  text-align: center;
}

.booking-card img {
  width: 72px;
  margin: 0 auto 16px;
}

.text-link {
  color: var(--accent-dark);
  font-weight: 700;
}

@media (max-width: 900px) {
  .hours-grid,
  .split-section,
  .media-grid,
  .team-grid,
  .reviews-grid,
  .visit-grid {
    grid-template-columns: 1fr;
  }

  .site-nav {
    justify-content: center;
  }

  .nav-wrap {
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .hero-panel {
    padding: 30px 18px;
  }

  .hour-card strong {
    font-size: 1.5rem;
  }

  .btn {
    width: 100%;
  }
}
