/* Canada Cinemas — theatrical dark theme with gold accents */

:root {
  --bg: #0F0D0B;
  --bg-elevated: #17130F;
  --bg-card: #1E1814;
  --cream: #E8DFCC;
  --cream-dim: #B8AE9A;
  --cream-mute: #7F7668;
  --gold: #C9A961;
  --gold-bright: #E0BE70;
  --gold-dim: #8C7640;
  --burgundy: #6B1F2E;
  --burgundy-bright: #8C2A3C;
  --rule: #2A2318;
  --shadow-deep: 0 2px 24px rgba(0,0,0,0.55), 0 0 0 1px rgba(201,169,97,0.05);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Crimson Pro', 'Crimson Text', Georgia, 'Times New Roman', serif;
  background: var(--bg);
  color: var(--cream);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', 'Didot', Georgia, serif;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--cream);
  line-height: 1.2;
}

h1 { font-size: 2.6rem; margin-bottom: 1.2rem; }
h2 { font-size: 1.9rem; margin-bottom: 1rem; color: var(--gold); }
h3 { font-size: 1.35rem; margin-bottom: 0.8rem; }
h4 { font-size: 1.1rem; margin-bottom: 0.6rem; color: var(--cream-dim); }

p { margin-bottom: 1rem; color: var(--cream); }
p + p { margin-top: 0; }

a { color: var(--gold); text-decoration: none; border-bottom: 1px dotted var(--gold-dim); transition: color 0.2s, border-color 0.2s; }
a:hover { color: var(--gold-bright); border-bottom-color: var(--gold-bright); }

strong { color: var(--cream); font-weight: 600; }
em { color: var(--cream-dim); font-style: italic; }

/* Header */
.site-header {
  background: linear-gradient(to bottom, var(--bg-elevated) 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--rule);
  padding: 1.4rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(8px);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  border: none;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.logo:hover { color: var(--gold-bright); }

.logo-mark {
  font-style: italic;
  color: var(--cream);
  font-weight: 400;
}

.site-nav {
  display: flex;
  gap: 1.8rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.site-nav a {
  color: var(--cream-dim);
  border: none;
  font-size: 0.95rem;
  padding: 0.4rem 0;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-family: 'Inter', -apple-system, sans-serif;
  font-weight: 500;
  font-size: 0.8rem;
}

.site-nav a:hover {
  color: var(--gold);
}

.site-nav a.active {
  color: var(--gold);
}

.site-nav a.active::after {
  content: '';
  position: absolute;
  bottom: -0.3rem;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gold);
}

/* Main layout */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.narrow {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 2rem;
}

main {
  padding: 3rem 0 5rem;
  min-height: 70vh;
}

/* Hero on home */
.hero {
  padding: 4rem 2rem 5rem;
  text-align: center;
  border-bottom: 1px solid var(--rule);
  background:
    radial-gradient(ellipse at center top, rgba(107,31,46,0.15) 0%, transparent 60%),
    linear-gradient(180deg, var(--bg-elevated) 0%, var(--bg) 100%);
}

.hero .issue-number {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 2rem;
}

.hero h1 {
  font-size: 3.6rem;
  max-width: 900px;
  margin: 0 auto 1.2rem;
  font-style: italic;
  color: var(--cream);
}

.hero h1 .gold { color: var(--gold); font-style: normal; }

.hero-tagline {
  font-size: 1.2rem;
  color: var(--cream-dim);
  max-width: 600px;
  margin: 0 auto;
  font-style: italic;
}

/* Section heading */
.section-heading {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-dim);
  border-bottom: 1px solid var(--rule);
  padding-bottom: 0.8rem;
  margin: 3rem 0 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.section-heading::before {
  content: '◆';
  color: var(--gold);
  font-size: 0.6rem;
}

/* Grid for cards (movies, cinemas, reviews) */
.grid {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.grid-2 { grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }

/* Card */
.card {
  background: var(--bg-card);
  border: 1px solid var(--rule);
  padding: 1.8rem;
  transition: transform 0.3s, border-color 0.3s;
  position: relative;
}

.card:hover {
  border-color: var(--gold-dim);
  transform: translateY(-2px);
}

.card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.card h3 a { color: var(--cream); border: none; }
.card h3 a:hover { color: var(--gold); }

.card-meta {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 1rem;
}

.card p {
  color: var(--cream-dim);
  font-size: 0.97rem;
}

.card-footer {
  margin-top: 1.2rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--rule);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
}

/* Cinema card */
.cinema-card {
  background: var(--bg-card);
  border: 1px solid var(--rule);
  padding: 2rem;
  margin-bottom: 1.5rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: start;
}

.cinema-card h3 {
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 0.3rem;
}

.cinema-card .cinema-tag {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream-mute);
  margin-bottom: 0.8rem;
}

.cinema-card p { margin-bottom: 0.6rem; font-size: 0.95rem; }

.cinema-meta {
  display: flex;
  gap: 1.5rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  color: var(--cream-mute);
  flex-wrap: wrap;
  margin-top: 0.8rem;
}

.cinema-meta span strong {
  color: var(--cream-dim);
  font-weight: 500;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.85rem 1.8rem;
  background: var(--burgundy);
  color: var(--cream);
  border: none;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}

.btn:hover {
  background: var(--burgundy-bright);
  color: var(--cream);
  transform: translateY(-1px);
}

.btn-gold {
  background: var(--gold);
  color: var(--bg);
}

.btn-gold:hover { background: var(--gold-bright); color: var(--bg); }

.btn-outline {
  background: transparent;
  border: 1px solid var(--gold-dim);
  color: var(--gold);
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--bg);
  border-color: var(--gold);
}

.btn-sm { padding: 0.5rem 1.2rem; font-size: 0.75rem; }

/* Review card (with pull-quote style) */
.review-card {
  background: var(--bg-card);
  border: 1px solid var(--rule);
  border-left: 3px solid var(--gold);
  padding: 2rem;
  margin-bottom: 2rem;
}

.review-card .review-meta {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 0.8rem;
}

.review-card h3 {
  font-size: 1.6rem;
  font-family: 'Playfair Display', serif;
  margin-bottom: 0.6rem;
}

.review-card .review-excerpt {
  color: var(--cream-dim);
  font-size: 1.02rem;
  line-height: 1.7;
  margin-bottom: 1.2rem;
}

.review-card .rating {
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

/* Article body */
.article-body {
  max-width: 780px;
  margin: 0 auto;
}

.article-body h2 {
  margin: 2.5rem 0 1rem;
  color: var(--gold);
  font-size: 1.7rem;
}

.article-body h3 {
  margin: 2rem 0 0.8rem;
  font-size: 1.25rem;
}

.article-body ul, .article-body ol {
  margin: 1rem 0 1.5rem 1.5rem;
  color: var(--cream);
}

.article-body li { margin-bottom: 0.5rem; }

.article-body blockquote {
  border-left: 3px solid var(--gold);
  padding: 0.5rem 1.5rem;
  margin: 2rem 0;
  font-style: italic;
  color: var(--cream-dim);
  font-size: 1.08rem;
}

.dropcap::first-letter {
  float: left;
  font-family: 'Playfair Display', serif;
  font-size: 4.6rem;
  line-height: 0.85;
  padding: 0.3rem 0.5rem 0 0;
  color: var(--gold);
  font-weight: 700;
}

/* Pull quote */
.pullquote {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-style: italic;
  color: var(--gold);
  text-align: center;
  max-width: 700px;
  margin: 3rem auto;
  padding: 2rem 2rem;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  line-height: 1.4;
}

/* Contact form */
.contact-form {
  max-width: 560px;
  margin: 2rem auto;
  background: var(--bg-card);
  padding: 2.5rem;
  border: 1px solid var(--rule);
}

.form-group {
  margin-bottom: 1.3rem;
}

.form-group label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--cream-dim);
  margin-bottom: 0.5rem;
}

.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  padding: 0.8rem 1rem;
  background: var(--bg);
  border: 1px solid var(--rule);
  color: var(--cream);
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.2s;
}

.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none;
  border-color: var(--gold);
}

.form-group textarea { min-height: 120px; resize: vertical; }

/* FAQ */
.faq-item {
  border-bottom: 1px solid var(--rule);
  padding: 1.5rem 0;
}

.faq-item h3 {
  color: var(--gold);
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
}

.faq-item p { color: var(--cream-dim); }

/* Now playing movie card */
.movie-card {
  background: var(--bg-card);
  border: 1px solid var(--rule);
  padding: 2rem;
  position: relative;
}

.movie-card .rating {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: var(--gold);
  color: var(--bg);
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  padding: 0.3rem 0.7rem;
  font-size: 0.8rem;
}

.movie-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.3rem;
  padding-right: 3.5rem;
}

.movie-card .movie-meta {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cream-mute);
  margin-bottom: 1rem;
}

.movie-card .movie-blurb {
  color: var(--cream-dim);
  font-size: 0.96rem;
  line-height: 1.6;
  margin-bottom: 1.3rem;
}

.movie-card .movie-cinemas {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  color: var(--gold-dim);
  margin-bottom: 1.2rem;
  letter-spacing: 0.05em;
}

/* CTA section */
.cta-section {
  background: linear-gradient(135deg, var(--burgundy) 0%, #4a1420 100%);
  padding: 4rem 2rem;
  text-align: center;
  margin: 4rem 0 2rem;
  border: 1px solid var(--gold-dim);
}

.cta-section h2 {
  color: var(--cream);
  font-size: 2rem;
  margin-bottom: 1rem;
}

.cta-section p {
  color: var(--cream);
  max-width: 560px;
  margin: 0 auto 2rem;
  font-size: 1.08rem;
}

/* Footer */
.site-footer {
  background: var(--bg-elevated);
  border-top: 1px solid var(--rule);
  padding: 4rem 0 2rem;
  margin-top: 6rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-cols {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-col h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.footer-col p, .footer-col li {
  color: var(--cream-mute);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.footer-col ul {
  list-style: none;
}

.footer-col a {
  color: var(--cream-dim);
  border: none;
  font-size: 0.9rem;
}

.footer-col a:hover { color: var(--gold); }

.affiliate-notice {
  background: var(--bg-card);
  border: 1px solid var(--rule);
  border-left: 3px solid var(--gold-dim);
  padding: 1.5rem;
  font-size: 0.85rem;
  color: var(--cream-mute);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.affiliate-notice strong { color: var(--gold-dim); display: block; margin-bottom: 0.4rem; font-family: 'Inter', sans-serif; font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase; }

.footer-bottom {
  border-top: 1px solid var(--rule);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--cream-mute);
}

.footer-bottom a { color: var(--cream-mute); border: none; }
.footer-bottom a:hover { color: var(--gold); }

/* Breadcrumbs */
.breadcrumbs {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  color: var(--cream-mute);
  margin-bottom: 2rem;
  letter-spacing: 0.05em;
}

.breadcrumbs a { color: var(--cream-dim); border: none; }
.breadcrumbs a:hover { color: var(--gold); }
.breadcrumbs .separator { margin: 0 0.6rem; color: var(--gold-dim); }

/* Tables */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.95rem;
}

table th, table td {
  padding: 0.9rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--rule);
}

table th {
  color: var(--gold);
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}

table td { color: var(--cream-dim); }
table tr:hover td { color: var(--cream); }

/* Responsive */
@media (max-width: 768px) {
  .header-inner { flex-direction: column; gap: 1rem; }
  .site-nav { justify-content: center; gap: 1.2rem; }
  .site-nav a { font-size: 0.72rem; }
  .hero h1 { font-size: 2.2rem; }
  .hero { padding: 3rem 1rem; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  .footer-cols { grid-template-columns: 1fr; gap: 2rem; }
  .container, .narrow { padding: 0 1.3rem; }
  .cinema-card { grid-template-columns: 1fr; }
  .cinema-card .btn { margin-top: 1rem; }
  main { padding: 2rem 0 3rem; }
  .cta-section { padding: 2.5rem 1rem; }
}

/* Google Fonts import */
@import url('https://fonts.googleapis.com/css2?family=Crimson+Pro:wght@400;500;600&family=Playfair+Display:ital,wght@0,500;0,600;0,700;1,500&family=Inter:wght@400;500;600&display=swap');
