:root {
  --bg: linear-gradient(135deg, #f5f1eb 0%, #ede4d3 100%);
  --bg-solid: #f5f1eb;
  --accent: #d4461a;
  --accent-dark: #b8341a;
  --accent-light: #e8764d;
  --gold: #c8860d;
  --text-primary: #2c1810;
  --text-secondary: #6b5b4a;
  --text-muted: #8a7a6a;
  --white: #ffffff;
  --shadow-light: rgba(212, 70, 26, 0.1);
  --shadow-medium: rgba(44, 24, 16, 0.15);
  --shadow-heavy: rgba(44, 24, 16, 0.25);
  --container: 1200px;
  --radius: 12px;
  --radius-small: 8px;
}

* {
  box-sizing: border-box
}

body {
  font-family: 'Georgia', 'Times New Roman', serif;
  margin: 0;
  background: var(--bg-solid);
  background-image: var(--bg);
  color: var(--text-primary);
  line-height: 1.6;
  font-size: 16px;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 1rem
}

.site-header {
  background: var(--white);
  border-bottom: 2px solid var(--accent-light);
  box-shadow: 0 4px 20px var(--shadow-light);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.5rem 1.25rem;
  max-width: var(--container);
  margin: 0 auto;
}

.title {
  margin: 0;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
  text-shadow: 2px 2px 4px var(--shadow-medium);
  letter-spacing: -0.02em;
}

.subtitle {
  margin: 0.5rem 0 0 0;
  color: var(--text-secondary);
  font-size: 1.1rem;
  font-style: italic;
  opacity: 0.9;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 60vh;
  display: flex;
  align-items: center;
}

.hero-img {
  width: 100%;
  height: 100%;
  min-height: 60vh;
  display: block;
  object-fit: cover;
  filter: brightness(0.7) contrast(1.1);
}

.hero-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  padding: 3rem 2rem 2rem;
  color: var(--white);
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}

.hero-overlay .container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1rem;
}

.hero-overlay h2 {
  font-size: 2.2rem;
  margin: 0 0 1rem 0;
  font-weight: 600;
  color: var(--white);
}

.lead {
  max-width: 50rem;
  font-size: 1.2rem;
  margin: 0;
  opacity: 0.95;
}

.content {
  padding: 3rem 0;
  background: var(--white);
  margin: -2rem 0 0 0;
  position: relative;
  z-index: 2;
  border-radius: var(--radius) var(--radius) 0 0;
  box-shadow: 0 -4px 20px var(--shadow-light);
}

.content .container {
  padding: 0 2rem;
}

.col-two {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

h3 {
  font-size: 1.8rem;
  color: var(--accent);
  margin: 2rem 0 1rem 0;
  font-weight: 600;
  border-bottom: 2px solid var(--accent-light);
  padding-bottom: 0.5rem;
}

h3:first-child {
  margin-top: 0;
}

h4 {
  font-size: 1.3rem;
  color: var(--text-secondary);
  margin: 1.5rem 0 0.8rem 0;
  font-weight: 500;
}

article h3,
article h4 {
  margin-top: 0
}

article p {
  margin-bottom: 1.2rem;
  text-align: justify;
}

aside {
  background: var(--bg-solid);
  padding: 1.5rem;
  border-radius: var(--radius);
  box-shadow: 0 4px 15px var(--shadow-light);
  border-left: 4px solid var(--accent);
}

.facts {
  list-style: none;
  padding: 0;
  margin: 0;
}

.facts li {
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(212, 70, 26, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.facts li:last-child {
  border-bottom: none;
}

.facts strong {
  color: var(--accent);
  font-weight: 600;
}

.video-wrap {
  margin: 2rem 0;
  text-align: center;
}

video {
  width: 100%;
  max-width: 900px;
  min-height: 400px;
  height: auto;
  border-radius: var(--radius);
  background: #000;
  box-shadow: 0 8px 30px var(--shadow-heavy);
  object-fit: cover;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.thumb {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: var(--radius);
  cursor: pointer;
  box-shadow: 0 8px 25px var(--shadow-medium);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.thumb:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 15px 35px var(--shadow-heavy);
  border-color: var(--accent-light);
}

.cast {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 0.8rem;
}

.cast li {
  padding: 1rem;
  background: var(--bg-solid);
  border-radius: var(--radius-small);
  border-left: 3px solid var(--accent-light);
  box-shadow: 0 2px 8px var(--shadow-light);
  transition: all 0.2s ease;
}

.cast li:hover {
  transform: translateX(5px);
  box-shadow: 0 4px 15px var(--shadow-medium);
}

.cast strong {
  color: var(--accent);
  display: block;
  font-size: 1.1rem;
  margin-bottom: 0.2rem;
}

.site-footer {
  background: var(--text-primary);
  color: var(--white);
  padding: 2rem 1rem;
  text-align: center;
  margin-top: 2rem;
}

.site-footer p {
  margin: 0;
  opacity: 0.8;
}

.site-footer a {
  color: var(--accent-light);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.site-footer a:hover {
  color: var(--gold);
  text-decoration: underline;
}

hr {
  border: none;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-light), transparent);
  margin: 3rem 0;
  border-radius: 1px;
}

/* Modal */
.modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  z-index: 1000
}

.modal[aria-hidden="false"] {
  display: flex
}

.modal-content {
  background: #fff;
  border-radius: 8px;
  max-width: 1100px;
  width: 100%;
  max-height: 90vh;
  overflow: auto;
  position: relative
}

.modal-close {
  position: absolute;
  right: 8px;
  top: 8px;
  border: 0;
  background: transparent;
  font-size: 1.1rem;
  cursor: pointer
}

.modal-content img,
.modal-content video {
  width: 100%;
  height: auto;
  border-radius: 6px
}

/* Responsive */
@media (max-width: 1024px) {
  .container {
    padding: 0.8rem;
  }

  .title {
    font-size: 2rem;
  }

  .hero-overlay h2 {
    font-size: 1.8rem;
  }

  .lead {
    font-size: 1.1rem;
  }
}

@media (max-width: 900px) {
  .col-two {
    grid-template-columns: 1fr
  }

  .hero-overlay {
    position: static;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.95);
    margin-top: -5rem
  }

  .thumb {
    height: 160px
  }
}

@media (max-width: 768px) {
  .col-two {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .title {
    font-size: 1.8rem;
  }

  .subtitle {
    font-size: 1rem;
  }

  .hero {
    min-height: 50vh;
  }

  .hero-img {
    min-height: 50vh;
  }

  .hero-overlay {
    padding: 2rem 1.5rem 1.5rem;
  }

  .hero-overlay h2 {
    font-size: 1.6rem;
  }

  .lead {
    font-size: 1rem;
  }

  .content {
    padding: 2rem 1rem;
    margin: -1rem 0 0 0;
  }

  h3 {
    font-size: 1.5rem;
  }

  .gallery {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 0.8rem;
  }

  .thumb {
    height: 180px;
  }

  .cast {
    grid-template-columns: 1fr;
  }

  video {
    min-height: 300px;
  }
}

@media (max-width: 480px) {
  .header-inner {
    padding: 1.5rem 1rem;
  }

  .title {
    font-size: 1.5rem;
  }

  .hero {
    min-height: 40vh;
  }

  .hero-img {
    min-height: 40vh;
  }

  .hero-overlay {
    padding: 1.5rem 1rem;
  }

  .hero-overlay h2 {
    font-size: 1.4rem;
  }

  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .thumb {
    height: 140px;
  }

  aside {
    padding: 1rem;
  }

  .facts li {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.3rem;
  }

  video {
    min-height: 250px;
  }
}