:root {
  --teal: #24ada7;
  --accent: #7ebec5;
  --dark: #2b2b2b;
  --text: #444;
  --light-bg: #f7f7f7;
  --intro-bg: #e9cec1;
  --synopsis-bg: #767776;
  --gold: #d9b258;
  --orange: #ec8f2e;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: "Open Sans", Arial, sans-serif;
  color: var(--text);
  line-height: 1.6;
  background: #fff;
}

.wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

a { color: var(--teal); text-decoration: none; }
a:hover { text-decoration: underline; }

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

/* Header */
.site-header {
  background: var(--teal);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
}
.site-header nav a {
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.9rem;
}
.site-header nav a:hover { text-decoration: none; opacity: 0.85; }

/* Hero */
.hero img { width: 100%; }

/* Intro */
.intro {
  text-align: center;
  padding: 48px 24px;
  background: var(--intro-bg);
}
.intro h1 {
  font-size: 2.2rem;
  margin: 0 0 16px;
  color: #333;
}
.intro h2 {
  font-size: 1.2rem;
  font-weight: 400;
  margin: 8px auto;
  max-width: 700px;
  color: #333;
}

/* Synopsis */
.synopsis {
  padding: 48px 0;
  background: var(--synopsis-bg);
  color: #fff;
}
.synopsis .wrap {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
.synopsis .poster {
  flex: 0 0 320px;
  max-width: 320px;
}
.synopsis .poster img {
  border-radius: 4px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.synopsis .text {
  flex: 1;
  min-width: 280px;
}
.synopsis h3 {
  margin: 0 0 8px;
  color: #fff;
}
.synopsis p { margin: 0 0 1em; color: #fff; }

/* Quotes */
.quotes {
  padding: 48px 0;
  background: var(--gold);
  color: #fff;
}
.quotes .wrap {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.quotes .quote {
  flex: 1;
  min-width: 220px;
}
.quotes h3 {
  margin: 0 0 12px;
  color: #fff;
}
.quotes p { margin: 0; font-size: 0.95rem; color: #fff; }

/* Contact */
.contact {
  text-align: center;
  padding: 48px 0;
  background: var(--orange);
  color: #fff;
}
.contact h2 {
  font-size: 1.4rem;
  margin: 0 0 12px;
  color: #fff;
}
.contact a {
  color: #fff;
}

/* Footer */
.site-footer {
  background: var(--teal);
  color: #fff;
  text-align: center;
  padding: 20px 24px;
  font-size: 0.85rem;
}
.site-footer a { color: #fff; text-decoration: underline; }

@media (max-width: 700px) {
  .intro h1 { font-size: 1.6rem; }
  .synopsis { flex-direction: column; }
  .synopsis .poster { max-width: 100%; }
}
