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

:root {
  --bg: #f5e9d4;
  --bg-2: #ebd9b8;
  --paper: #fff8ec;
  --ink: #1a1612;
  --ink-2: #3d342a;
  --line: #1a1612;
  --red: #c8442a;
  --red-deep: #8a2818;
  --gold: #b8884a;
  --plum: #4a1e2e;
  --muted: #6b5d4f;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Inter', sans-serif; background: var(--bg); color: var(--ink); line-height: 1.6; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
.serif { font-family: 'Playfair Display', serif; }
.italic { font-style: italic; }

.poster-edge { background: var(--ink); color: var(--bg); padding: 8px 0; font-size: 12px; letter-spacing: 4px; text-transform: uppercase; text-align: center; font-weight: 500; }
.poster-edge .star { color: var(--red); margin: 0 16px; font-size: 14px; }

.header { background: var(--bg); border-bottom: 2px solid var(--ink); position: relative; }
.header-inner { max-width: 1240px; margin: 0 auto; padding: 24px 40px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 40px; }
.header-left { display: flex; align-items: center; gap: 24px; font-size: 12px; text-transform: uppercase; letter-spacing: 2px; }
.header-divider { width: 24px; height: 1px; background: var(--ink); }
.logo { text-align: center; }
.logo .small { font-size: 11px; letter-spacing: 6px; text-transform: uppercase; margin-bottom: 4px; }
.logo .name { font-family: 'Playfair Display', serif; font-weight: 900; font-size: 38px; line-height: 1; letter-spacing: -1px; }
.logo .name span { font-style: italic; font-weight: 400; color: var(--red); }
.logo .est { font-size: 10px; letter-spacing: 4px; margin-top: 6px; color: var(--muted); }
.header-right { display: flex; justify-content: end; gap: 16px; align-items: center; }
.btn { display: inline-flex; align-items: center; gap: 10px; padding: 14px 28px; font-size: 12px; letter-spacing: 3px; text-transform: uppercase; font-weight: 600; border: 2px solid var(--ink); background: transparent; color: var(--ink); cursor: pointer; transition: all 0.15s; font-family: 'Inter', sans-serif; }
.btn:hover { background: var(--ink); color: var(--bg); }
.btn-red { background: var(--red); color: var(--paper); border-color: var(--red); }
.btn-red:hover { background: var(--red-deep); border-color: var(--red-deep); }
.btn-link { font-size: 12px; letter-spacing: 2px; text-transform: uppercase; font-weight: 500; border-bottom: 1px solid var(--ink); padding-bottom: 2px; }

.nav-bar { border-bottom: 1px solid var(--ink); }
.nav-inner { max-width: 1240px; margin: 0 auto; padding: 0 40px; display: flex; justify-content: center; gap: 40px; height: 48px; align-items: center; font-size: 12px; letter-spacing: 3px; text-transform: uppercase; font-weight: 500; }
.nav-inner a { position: relative; }
.nav-inner a.active::after { content: ''; position: absolute; bottom: -16px; left: 0; right: 0; height: 3px; background: var(--red); }
.nav-inner .dot { width: 3px; height: 3px; background: var(--red); border-radius: 50%; }

.hero { padding: 60px 0 80px; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; right: 8%; top: 100px; width: 280px; height: 280px; border: 2px solid var(--red); border-radius: 50%; opacity: 0.4; }
.hero::after { content: ''; position: absolute; left: 5%; bottom: 100px; width: 180px; height: 180px; border: 2px solid var(--ink); transform: rotate(45deg); opacity: 0.15; }
.hero-inner { max-width: 1240px; margin: 0 auto; padding: 0 40px; position: relative; z-index: 1; }
.hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 80px; align-items: center; }
.hero-eye { font-size: 12px; letter-spacing: 6px; text-transform: uppercase; color: var(--red); margin-bottom: 24px; display: flex; align-items: center; gap: 16px; }
.hero-eye::before { content: ''; width: 60px; height: 1px; background: var(--red); }
.hero h1 { font-family: 'Playfair Display', serif; font-weight: 900; font-size: 96px; line-height: 0.92; letter-spacing: -3px; margin-bottom: 32px; }
.hero h1 em { font-style: italic; font-weight: 400; color: var(--red); }
.hero h1 .small { display: block; font-size: 60px; font-weight: 400; font-style: italic; }
.hero p { font-size: 17px; max-width: 480px; margin-bottom: 32px; color: var(--ink-2); }
.hero-meta { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 24px; padding-top: 32px; border-top: 1px solid var(--ink); margin-bottom: 32px; }
.hero-meta-item { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); margin-bottom: 6px; }
.hero-meta-value { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700; }
.hero-actions { display: flex; gap: 14px; }

.poster { aspect-ratio: 3/4; background: var(--paper); border: 8px double var(--ink); position: relative; padding: 36px 32px; display: flex; flex-direction: column; box-shadow: 18px 18px 0 var(--ink); }
.poster::before { content: ''; position: absolute; inset: 12px; border: 1px solid var(--ink); pointer-events: none; }
.poster-top { font-size: 10px; letter-spacing: 4px; text-transform: uppercase; text-align: center; color: var(--muted); margin-bottom: 14px; }
.poster-divider { width: 80px; height: 1px; background: var(--ink); margin: 0 auto 24px; position: relative; }
.poster-divider::before, .poster-divider::after { content: '◆'; position: absolute; top: -7px; color: var(--red); font-size: 12px; }
.poster-divider::before { left: -20px; }
.poster-divider::after { right: -20px; }
.poster-name { font-family: 'Playfair Display', serif; font-weight: 900; font-size: 60px; line-height: 0.95; text-align: center; margin-bottom: 12px; letter-spacing: -1px; }
.poster-name em { font-style: italic; font-weight: 400; color: var(--red); }
.poster-author { font-style: italic; font-size: 16px; text-align: center; margin-bottom: 28px; color: var(--ink-2); font-family: 'Playfair Display', serif; }
.poster-art { flex: 1; background: var(--bg-2); margin-bottom: 28px; position: relative; overflow: hidden; }
.poster-art-figure { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); width: 65%; height: 80%; }
.poster-bottom { text-align: center; }
.poster-date { font-family: 'Playfair Display', serif; font-style: italic; font-size: 22px; }
.poster-place { font-size: 11px; letter-spacing: 4px; text-transform: uppercase; color: var(--muted); margin-top: 6px; }
.poster-stamp { position: absolute; bottom: -32px; right: -32px; width: 110px; height: 110px; border: 3px solid var(--red); border-radius: 50%; display: grid; place-items: center; transform: rotate(-12deg); background: var(--paper); }
.poster-stamp-inner { text-align: center; color: var(--red); font-family: 'Playfair Display', serif; font-style: italic; font-weight: 700; font-size: 13px; line-height: 1.2; }
.poster-stamp-inner .big { font-size: 26px; display: block; font-weight: 900; }

.section-inner { max-width: 1240px; margin: 0 auto; padding: 0 40px; }
.section-head { display: grid; grid-template-columns: 1fr auto 1fr; gap: 30px; align-items: center; margin: 80px 0 50px; }
.section-head .line { height: 1px; background: var(--ink); }
.section-head h2 { font-family: 'Playfair Display', serif; font-weight: 900; font-size: 48px; text-align: center; letter-spacing: -1px; line-height: 1.05; }
.section-head h2 em { font-style: italic; font-weight: 400; color: var(--red); }
.section-head .subtitle { display: block; font-size: 12px; letter-spacing: 6px; text-transform: uppercase; color: var(--muted); margin-bottom: 14px; font-family: 'Inter', sans-serif; font-weight: 500; }

.repertoire { padding: 40px 0 80px; }
.repertoire-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.show-card { background: var(--paper); border: 1px solid var(--ink); padding: 24px; transition: all 0.2s; }
.show-card:hover { box-shadow: 8px 8px 0 var(--red); transform: translate(-4px, -4px); }
.show-card-art { aspect-ratio: 4/5; background: var(--bg-2); margin-bottom: 20px; position: relative; overflow: hidden; border: 1px solid var(--ink); }
.show-card-tag { position: absolute; top: 12px; left: 12px; background: var(--ink); color: var(--paper); padding: 4px 12px; font-size: 10px; letter-spacing: 2px; text-transform: uppercase; font-weight: 600; z-index: 2; }
.show-card-tag.premiere { background: var(--red); }
.show-card-tag.children { background: var(--gold); color: var(--ink); }
.show-card-art-figure { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); width: 70%; height: 80%; }
.show-card-meta { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--muted); margin-bottom: 10px; }
.show-card-meta .accent { color: var(--red); }
.show-card h3 { font-family: 'Playfair Display', serif; font-weight: 900; font-size: 28px; line-height: 1.05; margin-bottom: 10px; letter-spacing: -0.5px; }
.show-card h3 em { font-style: italic; font-weight: 400; color: var(--red); }
.show-card-author { font-family: 'Playfair Display', serif; font-style: italic; font-size: 14px; color: var(--ink-2); margin-bottom: 20px; }
.show-card-bottom { display: flex; justify-content: space-between; align-items: end; padding-top: 16px; border-top: 1px solid var(--ink); font-size: 11px; letter-spacing: 2px; text-transform: uppercase; }
.show-card-date { font-family: 'Playfair Display', serif; font-style: italic; font-size: 18px; text-transform: none; letter-spacing: 0; }

.afisha { padding: 70px 0; background: var(--paper); border-top: 2px solid var(--ink); border-bottom: 2px solid var(--ink); }
.afisha-table { width: 100%; border-collapse: collapse; }
.afisha-table thead { border-bottom: 2px solid var(--ink); }
.afisha-table th { padding: 14px 12px; text-align: left; font-size: 11px; letter-spacing: 3px; text-transform: uppercase; font-weight: 600; color: var(--muted); }
.afisha-table tbody tr { border-bottom: 1px solid var(--ink); transition: background 0.15s; }
.afisha-table tbody tr:hover { background: var(--bg-2); }
.afisha-table td { padding: 22px 12px; vertical-align: middle; }
.afisha-day { font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 900; line-height: 1; }
.afisha-month { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); margin-top: 4px; }
.afisha-time { font-family: 'Playfair Display', serif; font-style: italic; font-size: 22px; }
.afisha-name { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 20px; line-height: 1.2; }
.afisha-name em { font-style: italic; font-weight: 400; color: var(--red); }
.afisha-name-sub { font-style: italic; font-size: 13px; color: var(--ink-2); margin-top: 4px; font-family: 'Playfair Display', serif; }
.afisha-genre { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); }
.afisha-price { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 700; }
.afisha-action { background: var(--red); color: var(--paper); padding: 8px 18px; font-size: 11px; letter-spacing: 2px; text-transform: uppercase; font-weight: 600; }
.afisha-action:hover { background: var(--red-deep); }

.troupe { padding: 80px 0; }
.troupe-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; margin-bottom: 60px; }
.troupe-intro h2 { font-family: 'Playfair Display', serif; font-weight: 900; font-size: 56px; line-height: 1; letter-spacing: -1px; }
.troupe-intro h2 em { font-style: italic; font-weight: 400; color: var(--red); }
.troupe-intro p { font-size: 16px; line-height: 1.8; color: var(--ink-2); }
.troupe-intro p + p { margin-top: 16px; }
.troupe-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.actor { text-align: center; }
.actor-portrait { aspect-ratio: 3/4; background: var(--bg-2); border: 1px solid var(--ink); position: relative; overflow: hidden; margin-bottom: 14px; }
.actor-portrait svg { width: 100%; height: 100%; }
.actor-name { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 19px; }
.actor-role { font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--muted); margin-top: 4px; }

.quote-section { padding: 90px 0; background: var(--ink); color: var(--bg); position: relative; overflow: hidden; }
.quote-section::before { content: '"'; position: absolute; top: -60px; left: 60px; font-family: 'Playfair Display', serif; font-size: 360px; color: var(--red); opacity: 0.4; line-height: 1; }
.quote-content { max-width: 800px; margin: 0 auto; text-align: center; position: relative; }
.quote-content blockquote { font-family: 'Playfair Display', serif; font-style: italic; font-size: 36px; line-height: 1.4; margin-bottom: 32px; }
.quote-author { font-size: 12px; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); }

.subscribe { padding: 80px 0; }
.subscribe-card { background: var(--paper); border: 2px solid var(--ink); padding: 60px; display: grid; grid-template-columns: 1.2fr 1fr; gap: 50px; align-items: center; position: relative; }
.subscribe-card::before { content: ''; position: absolute; top: -10px; left: -10px; right: -10px; bottom: -10px; border: 1px solid var(--ink); pointer-events: none; z-index: -1; }
.subscribe-card h3 { font-family: 'Playfair Display', serif; font-weight: 900; font-size: 44px; line-height: 1; letter-spacing: -1px; margin-bottom: 16px; }
.subscribe-card h3 em { font-style: italic; font-weight: 400; color: var(--red); }
.subscribe-card p { font-size: 15px; color: var(--ink-2); }
.subscribe-form { display: flex; gap: 0; border: 2px solid var(--ink); }
.subscribe-form input { flex: 1; border: 0; padding: 16px 20px; font-family: 'Inter', sans-serif; font-size: 14px; background: transparent; outline: 0; }
.subscribe-form button { background: var(--ink); color: var(--paper); border: 0; padding: 0 28px; font-size: 11px; letter-spacing: 3px; text-transform: uppercase; font-weight: 600; cursor: pointer; font-family: 'Inter', sans-serif; }

.footer { background: var(--ink); color: var(--bg); padding: 70px 0 30px; }
.footer-inner { max-width: 1240px; margin: 0 auto; padding: 0 40px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 50px; margin-bottom: 50px; }
.footer-brand .logo .name { color: var(--bg); }
.footer-brand .logo .name span { color: var(--red); }
.footer-brand p { font-size: 13px; line-height: 1.7; color: var(--bg-2); margin: 24px 0 28px; max-width: 360px; }
.footer-socials { display: flex; gap: 12px; }
.footer-social { width: 40px; height: 40px; border: 1px solid var(--bg-2); display: grid; place-items: center; transition: all 0.2s; }
.footer-social:hover { border-color: var(--red); color: var(--red); }
.footer h5 { font-size: 11px; letter-spacing: 4px; text-transform: uppercase; margin-bottom: 18px; color: var(--gold); }
.footer ul { list-style: none; }
.footer li { margin-bottom: 10px; font-size: 14px; color: var(--bg-2); }
.footer a:hover { color: var(--bg); }
.footer-bottom { border-top: 1px solid var(--bg-2); padding-top: 24px; font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--bg-2); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 20px; }

.page-header { padding: 60px 0 40px; border-bottom: 1px solid var(--ink); position: relative; }
.page-header::before { content: ''; position: absolute; right: 8%; top: 40px; width: 200px; height: 200px; border: 2px solid var(--red); border-radius: 50%; opacity: 0.3; }
.page-header .crumbs { font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--muted); margin-bottom: 24px; }
.page-header h1 { font-family: 'Playfair Display', serif; font-weight: 900; font-size: 96px; letter-spacing: -3px; line-height: 0.95; }
.page-header h1 em { font-style: italic; font-weight: 400; color: var(--red); }
.page-header .h1-sub { font-family: 'Playfair Display', serif; font-style: italic; font-size: 22px; color: var(--ink-2); margin-top: 12px; }

.repertoire-list { padding: 50px 0 80px; }
.repertoire-filters { display: flex; gap: 16px; margin-bottom: 50px; flex-wrap: wrap; padding-bottom: 30px; border-bottom: 1px solid var(--ink); }
.repertoire-chip { padding: 8px 18px; font-size: 11px; letter-spacing: 2px; text-transform: uppercase; font-weight: 500; border: 1px solid var(--ink); cursor: pointer; transition: all 0.15s; }
.repertoire-chip:hover, .repertoire-chip.active { background: var(--ink); color: var(--bg); }
.repertoire-detailed { display: grid; gap: 50px; }
.show-detailed { display: grid; grid-template-columns: 320px 1fr auto; gap: 50px; align-items: start; padding-bottom: 50px; border-bottom: 1px solid var(--ink); }
.show-detailed-poster { aspect-ratio: 3/4; background: var(--paper); border: 4px double var(--ink); padding: 16px; position: relative; }
.show-detailed-poster::before { content: ''; position: absolute; inset: 4px; border: 1px solid var(--ink); }
.show-detailed-poster-top { font-size: 9px; letter-spacing: 3px; text-transform: uppercase; text-align: center; color: var(--muted); margin-bottom: 12px; position: relative; }
.show-detailed-poster-name { font-family: 'Playfair Display', serif; font-weight: 900; font-size: 32px; text-align: center; line-height: 0.95; margin-bottom: 12px; position: relative; }
.show-detailed-poster-name em { font-style: italic; font-weight: 400; color: var(--red); }
.show-detailed-poster-art { aspect-ratio: 1.2; background: var(--bg-2); margin-bottom: 12px; position: relative; overflow: hidden; }
.show-detailed-poster-author { font-style: italic; font-size: 11px; text-align: center; color: var(--ink-2); font-family: 'Playfair Display', serif; }
.show-detailed-info h3 { font-family: 'Playfair Display', serif; font-weight: 900; font-size: 44px; line-height: 1; letter-spacing: -1px; margin-bottom: 8px; }
.show-detailed-info h3 em { font-style: italic; font-weight: 400; color: var(--red); }
.show-detailed-info-sub { font-family: 'Playfair Display', serif; font-style: italic; font-size: 18px; color: var(--ink-2); margin-bottom: 20px; }
.show-detailed-meta { display: flex; gap: 24px; padding: 14px 0; border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink); margin-bottom: 24px; flex-wrap: wrap; }
.show-detailed-meta-item { display: flex; flex-direction: column; gap: 2px; }
.show-detailed-meta-label { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); }
.show-detailed-meta-value { font-size: 14px; font-weight: 500; }
.show-detailed-info p { font-size: 15px; color: var(--ink-2); line-height: 1.8; margin-bottom: 16px; }
.show-detailed-side { background: var(--paper); border: 1px solid var(--ink); padding: 28px; min-width: 240px; }
.show-detailed-side h5 { font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--muted); margin-bottom: 18px; padding-bottom: 12px; border-bottom: 1px solid var(--ink); }
.show-detailed-show-row { display: flex; justify-content: space-between; padding: 12px 0; border-bottom: 1px dashed var(--ink); }
.show-detailed-show-row:last-of-type { border-bottom: 0; margin-bottom: 16px; }
.show-detailed-show-day { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 16px; }
.show-detailed-show-time { font-style: italic; color: var(--muted); font-size: 13px; }
.show-detailed-price { font-family: 'Playfair Display', serif; font-style: italic; font-size: 18px; margin-bottom: 14px; }
.show-detailed-price strong { font-weight: 900; font-style: normal; font-size: 24px; color: var(--red); }
.show-detailed-side .btn { width: 100%; justify-content: center; }

.about-intro { padding: 70px 0; }
.about-intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-intro-text h2 { font-family: 'Playfair Display', serif; font-weight: 900; font-size: 56px; line-height: 1; letter-spacing: -1px; margin-bottom: 30px; }
.about-intro-text h2 em { font-style: italic; font-weight: 400; color: var(--red); }
.about-intro-text p { font-size: 16px; line-height: 1.8; color: var(--ink-2); margin-bottom: 18px; }
.about-intro-text .lead::first-letter { font-family: 'Playfair Display', serif; font-weight: 900; font-size: 64px; float: left; line-height: 0.85; padding: 6px 12px 0 0; color: var(--red); }
.about-visual { position: relative; aspect-ratio: 4/5; background: var(--paper); border: 4px double var(--ink); padding: 24px; }
.about-visual::before { content: ''; position: absolute; inset: 8px; border: 1px solid var(--ink); }
.about-visual-inner { width: 100%; height: 100%; background: var(--bg-2); border: 1px solid var(--ink); display: grid; place-items: center; position: relative; overflow: hidden; }

.about-stats { padding: 60px 0; background: var(--ink); color: var(--bg); }
.about-stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 50px; }
.about-stat { text-align: center; position: relative; }
.about-stat:not(:last-child)::after { content: ''; position: absolute; right: -25px; top: 20%; bottom: 20%; width: 1px; background: var(--bg-2); }
.about-stat-num { font-family: 'Playfair Display', serif; font-weight: 900; font-size: 72px; line-height: 1; color: var(--gold); letter-spacing: -2px; }
.about-stat-num em { font-style: italic; font-weight: 400; }
.about-stat-label { font-size: 11px; letter-spacing: 4px; text-transform: uppercase; margin-top: 14px; color: var(--bg-2); }

.history-section { padding: 80px 0; }
.history-grid { display: grid; gap: 60px; }
.history-row { display: grid; grid-template-columns: 200px 1fr; gap: 60px; padding-bottom: 60px; border-bottom: 1px solid var(--ink); align-items: start; }
.history-row:last-child { border-bottom: 0; padding-bottom: 0; }
.history-year { font-family: 'Playfair Display', serif; font-weight: 900; font-size: 96px; line-height: 0.9; color: var(--red); letter-spacing: -3px; }
.history-content h4 { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 28px; margin-bottom: 14px; line-height: 1.1; }
.history-content h4 em { font-style: italic; font-weight: 400; color: var(--red); }
.history-content p { font-size: 15px; line-height: 1.8; color: var(--ink-2); }

.contacts-section { padding: 70px 0; }
.contacts-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; }
.contact-block { background: var(--paper); border: 1px solid var(--ink); padding: 40px; margin-bottom: 24px; position: relative; }
.contact-block h3 { font-family: 'Playfair Display', serif; font-weight: 900; font-size: 28px; margin-bottom: 6px; }
.contact-block h3 em { font-style: italic; font-weight: 400; color: var(--red); }
.contact-block .ic-sub { font-size: 11px; letter-spacing: 4px; text-transform: uppercase; color: var(--muted); margin-bottom: 24px; }
.contact-rows { display: grid; gap: 14px; }
.contact-row-item { display: flex; gap: 16px; align-items: start; padding-bottom: 12px; border-bottom: 1px dashed var(--ink); }
.contact-row-item:last-child { border-bottom: 0; padding-bottom: 0; }
.contact-row-label { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--muted); width: 90px; flex-shrink: 0; padding-top: 4px; }
.contact-row-value { font-family: 'Playfair Display', serif; font-size: 16px; }
.contact-row-value .accent { color: var(--red); font-style: italic; }
.contact-form { background: var(--paper); border: 2px solid var(--ink); padding: 40px; }
.contact-form h3 { font-family: 'Playfair Display', serif; font-weight: 900; font-size: 32px; margin-bottom: 6px; }
.contact-form h3 em { font-style: italic; font-weight: 400; color: var(--red); }
.contact-form .cf-sub { font-size: 13px; color: var(--ink-2); margin-bottom: 28px; font-style: italic; font-family: 'Playfair Display', serif; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--muted); margin-bottom: 6px; font-weight: 500; }
.field input, .field select, .field textarea { width: 100%; padding: 12px 14px; background: transparent; border: 1px solid var(--ink); font-family: 'Inter', sans-serif; font-size: 14px; color: var(--ink); outline: 0; }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--red); }
.field textarea { min-height: 100px; resize: vertical; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contact-form .btn { width: 100%; justify-content: center; }
.theatre-map { aspect-ratio: 16/9; background: var(--paper); border: 1px solid var(--ink); position: relative; overflow: hidden; margin-top: 0; }

@media (max-width: 1024px) {
  .header-inner { grid-template-columns: 1fr; gap: 20px; text-align: center; }
  .header-left, .header-right { display: none; }
  .nav-inner { gap: 22px; padding: 0 20px; flex-wrap: wrap; height: auto; padding: 14px 20px; }
  .hero h1 { font-size: 64px; }
  .hero h1 .small { font-size: 38px; }
  .hero-grid { grid-template-columns: 1fr; gap: 50px; }
  .repertoire-grid { grid-template-columns: repeat(2, 1fr); }
  .troupe-intro { grid-template-columns: 1fr; gap: 30px; }
  .troupe-grid { grid-template-columns: repeat(2, 1fr); }
  .subscribe-card { grid-template-columns: 1fr; padding: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .show-detailed { grid-template-columns: 1fr; gap: 30px; }
  .about-intro-grid, .contacts-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .about-stat:not(:last-child)::after { display: none; }
  .history-row { grid-template-columns: 1fr; gap: 16px; }
  .page-header h1 { font-size: 56px; }
  .quote-content blockquote { font-size: 24px; }
}
@media (max-width: 720px) {
  .section-inner { padding: 0 24px; }
  .hero { padding: 30px 0 50px; }
  .hero h1 { font-size: 48px; letter-spacing: -1.5px; }
  .hero h1 .small { font-size: 28px; }
  .repertoire-grid { grid-template-columns: 1fr; }
  .afisha-table th, .afisha-table td { padding: 10px 6px; font-size: 12px; }
  .afisha-day { font-size: 22px; }
  .afisha-name { font-size: 16px; }
  .troupe-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .section-head h2 { font-size: 32px; }
  .page-header h1 { font-size: 40px; }
  .history-year { font-size: 60px; }
  .about-stats-grid { grid-template-columns: 1fr; gap: 30px; }
  .about-stat-num { font-size: 56px; }
}
