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

:root {
  --cream: #F1F0E9;
  --paper: #FBFAF5;
  --dark: #262626;
  --ink: #262626;
  --muted: #6F6B62;
  --rule: #C9C4B6;
  --amber: #fcb052;
  --blue: #299fc6;
  --danger: #9D3D2E;
  --sage: #DCE8D9;
  font-family: Georgia, 'Times New Roman', serif;
  color: var(--ink);
  background: var(--cream);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--cream); color: var(--ink); font-size: 17px; line-height: 1.65; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }

.shell { min-height: 100vh; }
.site-head { background: var(--dark); color: var(--cream); border-bottom: 1px solid #444; }
.head-inner { max-width: 1180px; margin: auto; padding: 10px 24px; display: flex; align-items: center; gap: 22px; }
.brand { display: inline-flex; align-items: center; text-decoration: none; }
.brand img { display: block; width: 112px; height: 69px; object-fit: contain; }
.site-head nav { margin-left: auto; display: flex; gap: 20px; }
.site-head nav a { font: 700 12px/1 'DM Sans', sans-serif; text-transform: uppercase; letter-spacing: .1em; text-decoration: none; }
.site-head nav a:first-child { color: var(--blue); }
.page { max-width: 1180px; margin: auto; padding: 56px 24px 96px; }
.hero { display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(280px, .6fr); gap: 48px; align-items: end; padding: 48px 0 64px; border-bottom: 1px solid var(--rule); }
.eyebrow, .section-label { font: 800 12px/1.2 'DM Sans', sans-serif; letter-spacing: .16em; text-transform: uppercase; color: var(--blue); }
h1, h2, h3 { font-family: 'Playfair Display', Georgia, serif; line-height: 1.05; margin: 0; }
h1 { font-size: clamp(44px, 6vw, 76px); letter-spacing: -.035em; }
h2 { font-size: clamp(30px, 3.7vw, 46px); letter-spacing: -.02em; }
h3 { font-size: 23px; }
.lede { font-size: clamp(19px, 2vw, 25px); font-style: italic; line-height: 1.5; }
.placeholder { border-left: 3px solid var(--amber); padding: 14px 18px; background: #F5EFDF; color: #6C573E; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 12px 20px; border: 1.5px solid var(--dark); background: transparent; color: var(--dark); font: 700 14px/1 'DM Sans', sans-serif; text-decoration: none; cursor: pointer; border-radius: 3px; }
.button.primary { background: var(--amber); }
.button.dark { background: var(--dark); color: white; }
.button:disabled { opacity: .4; cursor: not-allowed; }
.section { padding: 64px 0; border-bottom: 1px solid var(--rule); }
.section-head { display: grid; grid-template-columns: 180px 1fr; gap: 24px; margin-bottom: 34px; }
.stats { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--dark); }
.stat { padding: 24px; border-right: 1px solid var(--dark); background: var(--paper); }
.stat:last-child { border-right: 0; }
.stat b { display: block; font: 800 clamp(28px, 4vw, 48px)/1 'Playfair Display', serif; }
.stat span { font: 700 11px/1.3 'DM Sans', sans-serif; letter-spacing: .08em; text-transform: uppercase; }
.calendar { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.issue { position: relative; display: block; padding: 18px; background: var(--paper); border: 1px solid var(--rule); min-height: 122px; }
.issue.open { border-color: var(--dark); cursor: pointer; }
.issue input { position: absolute; opacity: 0; }
.issue:has(input:checked) { background: var(--dark); color: var(--cream); }
.issue-date { display: block; font: 700 22px/1.2 'Playfair Display', serif; }
.issue-meta { display: block; margin-top: 9px; font: 700 11px/1.3 'DM Sans', sans-serif; letter-spacing: .08em; text-transform: uppercase; }
.state { color: var(--muted); }
.issue.open .state { color: #0A6E84; }
.form-card, .panel { background: var(--paper); border: 1px solid var(--rule); padding: clamp(22px, 4vw, 42px); }
.terms-panel { margin: 24px 0 18px; border: 1px solid var(--rule); background: #f5f3ec; }
.terms-panel summary { padding: 17px 20px; cursor: pointer; font: 700 15px/1.3 'DM Sans', sans-serif; }
.terms-panel[open] summary { border-bottom: 1px solid var(--rule); }
.terms-copy { max-height: 440px; overflow-y: auto; padding: 20px; }
.terms-copy h3 { margin: 22px 0 7px; font: 700 16px/1.3 'DM Sans', sans-serif; }
.terms-copy h3:first-child { margin-top: 0; }
.terms-copy p { margin: 0 0 12px; font: 15px/1.6 Georgia, 'Times New Roman', serif; color: var(--muted); }
.terms-accept { display: flex; align-items: flex-start; gap: 10px; margin: 18px 0; font: 600 14px/1.5 'DM Sans', sans-serif; }
.terms-accept input { flex: none; width: 18px; height: 18px; margin: 1px 0 0; accent-color: var(--blue); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { display: grid; gap: 7px; }
.field.full { grid-column: 1 / -1; }
label, .label { font: 700 12px/1.3 'DM Sans', sans-serif; letter-spacing: .06em; text-transform: uppercase; }
input, textarea, select { width: 100%; border: 1px solid var(--dark); background: #fff; color: var(--ink); padding: 12px 14px; border-radius: 2px; }
textarea { min-height: 120px; resize: vertical; }
.error { padding: 12px 15px; border-left: 3px solid var(--danger); background: #F4E3DE; }
.success { padding: 12px 15px; border-left: 3px solid #507A57; background: var(--sage); }
.dashboard { display: grid; grid-template-columns: 240px minmax(0, 1fr); gap: 34px; }
.side { position: sticky; top: 20px; align-self: start; display: grid; gap: 10px; }
.side a { font: 700 13px/1.3 'DM Sans', sans-serif; }
.stack { display: grid; gap: 16px; }
.row { display: flex; align-items: center; gap: 14px; justify-content: space-between; }
.card { background: var(--paper); border: 1px solid var(--rule); padding: 20px; }
.pill { display: inline-flex; padding: 5px 9px; background: #E7E3D8; border-radius: 999px; font: 700 10px/1 'DM Sans', sans-serif; letter-spacing: .08em; text-transform: uppercase; }
.pill.open, .pill.confirmed, .pill.approved { background: var(--sage); }
.pill.held, .pill.awaiting_acceptance { background: #F5E2C4; }
.pill.declined, .pill.rejected, .pill.expired { background: #F4E3DE; }
.meta { color: var(--muted); font-size: 14px; }
.check-card { display: grid; grid-template-columns: 1fr auto; gap: 16px; align-items: start; }
.check-card form { grid-column: 1 / -1; }
.invoice-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
table { width: 100%; border-collapse: collapse; background: var(--paper); font-size: 14px; }
th, td { padding: 12px; border-bottom: 1px solid var(--rule); text-align: left; vertical-align: top; }
th { font: 700 10px/1.2 'DM Sans', sans-serif; letter-spacing: .08em; text-transform: uppercase; }
.footer { background: var(--dark); color: var(--cream); padding: 28px 24px; font: 600 12px/1.4 'DM Sans', sans-serif; text-align: center; }

/* Public media kit */
.marketing-page { padding-top: 0; }
.ad-hero { min-height: 560px; display: grid; grid-template-columns: minmax(0, .95fr) minmax(380px, 1.05fr); gap: 72px; align-items: center; padding: 72px 0; background: #d7e8ed; box-shadow: 0 0 0 100vmax #d7e8ed; clip-path: inset(0 -100vmax); }
.hero-copy { max-width: 610px; }
.hero-copy h1 { max-width: 590px; margin: 0 0 22px; font-size: clamp(40px, 4.5vw, 62px); line-height: 1.02; }
.hero-copy .lede { max-width: 570px; margin: 0; font: 400 clamp(18px, 1.8vw, 22px)/1.5 Georgia, 'Times New Roman', serif; color: var(--muted); }
.button-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 34px; }
.hero-feature { position: relative; min-height: 510px; margin-bottom: -72px; padding: 24px 24px 0; background: #d7e8ed; overflow: hidden; }
.feature-kicker { position: relative; z-index: 8; margin: 0; font: 700 11px/1.3 'DM Sans', sans-serif; text-transform: uppercase; letter-spacing: .12em; }
.edition-stack { position: relative; height: 445px; margin-top: 16px; }
.edition-preview { position: absolute; left: 50%; top: 0; width: 76%; height: 540px; overflow: hidden; background: var(--cream); border: 1px solid rgba(38,38,38,.28); box-shadow: 0 16px 38px rgba(38,38,38,.16); transition: transform .62s cubic-bezier(.32,.72,.24,1), opacity .45s ease; pointer-events: none; }
.edition-preview:nth-child(1) { z-index: 5; transform: translateX(-40%); }
.edition-preview:nth-child(2) { z-index: 4; transform: translateX(-48%) translateY(13px); }
.edition-preview:nth-child(3) { z-index: 3; transform: translateX(-56%) translateY(26px); }
.edition-preview:nth-child(4) { z-index: 2; transform: translateX(-64%) translateY(39px); }
.edition-preview:nth-child(5) { z-index: 1; transform: translateX(-72%) translateY(52px); }
.edition-preview.leaving { z-index: 7; opacity: 0; transform: translateX(16%) translateY(-12px) rotate(2deg); }
.edition-hero { height: 420px; display: grid; grid-template-rows: 12px 88px 50px 205px; gap: 6px; padding: 22px 24px 24px; background: #242424; color: var(--cream); }
.edition-tags { display: block; color: var(--blue); font: 700 8px/1.3 'DM Sans', sans-serif; text-transform: uppercase; letter-spacing: .13em; }
.edition-hero h3 { align-self: center; max-height: 88px; overflow: hidden; margin: 0; font-size: clamp(22px, 2.4vw, 31px); line-height: .98; }
.edition-hero p { align-self: center; max-height: 50px; overflow: hidden; margin: 0; color: #d4cec2; font-size: 12px; font-style: italic; line-height: 1.35; }
.edition-hero img { display: block; width: 100%; height: 205px; object-fit: cover; border: 1px solid #4a4844; }
.edition-sponsor { min-height: 120px; padding: 24px 28px; text-align: center; }
.edition-sponsor > span { font: 700 8px/1.3 'DM Sans', sans-serif; text-transform: uppercase; letter-spacing: .2em; color: #979182; }
.edition-sponsor > div { width: 88%; height: 56px; margin: 14px auto 0; border-radius: 7px; background: #242424; }
.stats-band { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 28px; border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
.stats-band .stat { border: 0; border-right: 1px solid var(--rule); padding: 25px 22px; background: transparent; }
.stats-band .stat:last-child { border-right: 0; }
.stats-band .stat b { font-size: clamp(29px, 3vw, 41px); }
.media-kit-grid { display: grid; grid-template-columns: 190px minmax(0, 1fr); gap: 76px; padding-top: 72px; }
.page-nav { position: sticky; top: 24px; align-self: start; display: grid; }
.page-nav p { margin: 0 0 9px; padding-bottom: 10px; border-bottom: 2px solid var(--dark); font: 700 12px/1.3 'DM Sans', sans-serif; text-transform: uppercase; letter-spacing: .08em; }
.page-nav a { padding: 10px 0; border-bottom: 1px solid var(--rule); font: 600 13px/1.3 'DM Sans', sans-serif; text-decoration: none; }
.page-nav a:hover { color: var(--blue); }
.media-kit-content { max-width: 850px; }
.intro { max-width: 740px; margin: 0 0 72px; font: 400 clamp(18px, 2vw, 24px)/1.52 Georgia, 'Times New Roman', serif; }
.kit-section { scroll-margin-top: 28px; padding: 0 0 72px; margin: 0 0 72px; border-bottom: 1px solid var(--rule); }
.kit-section h2 { max-width: 720px; margin: 14px 0 34px; }
.kit-section > p:not(.section-label):not(.package-note) { max-width: 720px; }
.fit-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 34px 46px; }
.fit-list article { padding-top: 18px; border-top: 3px solid var(--amber); }
.fit-list h3 { font-size: 21px; margin-bottom: 12px; }
.fit-list p { margin: 0; font-family: Georgia, 'Times New Roman', serif; font-size: 16px; line-height: 1.6; color: #4f4c46; }
.why-list { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 28px; }
#why { border-bottom: 0; }
.why-row { display: grid; grid-template-rows: 230px auto; padding: 18px 0 0; border-top: 3px solid var(--amber); }
.why-row:last-child { border-bottom: 0; }
.why-copy h3, .reader-quotes h3 { margin: 0 0 16px; font-size: 21px; }
.why-copy h3 { min-height: 52px; }
.why-copy p { margin: 0; font-size: 17px; line-height: 1.62; color: #4f4c46; }
.reader-quotes { display: grid; align-content: start; gap: 14px; padding-top: 28px; border-top: 1px solid var(--rule); }
.reader-quotes blockquote { position: relative; margin: 0; padding-left: 28px; color: #77736b; font-size: 17px; font-style: italic; line-height: 1.45; }
.reader-quotes blockquote::before { content: '“'; position: absolute; left: 0; top: -7px; color: var(--blue); font: 700 32px/1 Georgia, serif; }
.audience-intro { margin: -10px 0 28px; }
.audience-profile { display: grid; grid-template-columns: 1fr; margin-top: 0; border: 1px solid var(--rule); }
.audience-profile article { display: grid; grid-template-columns: 28px 170px minmax(0, 1fr); align-items: start; column-gap: 18px; min-height: 0; padding: 20px 26px; background: var(--paper); border-right: 0; border-bottom: 1px solid var(--rule); }
.audience-profile article::before { content: ''; width: 25px; height: 25px; margin-top: 0; background-position: center; background-repeat: no-repeat; background-size: contain; opacity: .88; }
.audience-geographic::before { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23262626' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='M2 12h20M12 2a15 15 0 0 1 0 20M12 2a15 15 0 0 0 0 20'/%3E%3C/svg%3E"); }
.audience-gender::before { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23262626' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2'/%3E%3Ccircle cx='9' cy='7' r='4'/%3E%3Cpath d='M22 21v-2a4 4 0 0 0-3-3.87M16 3.13a4 4 0 0 1 0 7.75'/%3E%3C/svg%3E"); }
.audience-age::before { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23262626' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='5' width='18' height='16' rx='2'/%3E%3Cpath d='M16 3v4M8 3v4M3 11h18'/%3E%3C/svg%3E"); }
.audience-theatre::before { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23262626' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m7 4 10 0 4 4v12H3V8zM8 4l3 4M13 4l3 4M3 8h18'/%3E%3C/svg%3E"); }
.audience-profile article:last-child { border-bottom: 0; }
.audience-profile strong { font: 700 15px/1.45 'DM Sans', sans-serif; }
.audience-profile span { display: block; margin: 0; font: 500 15px/1.65 'DM Sans', sans-serif; }
.audience-profile span b { font-weight: 500; }
.audience-geographic span::after { content: '24% Other'; display: block; }
.audience-gender span, .audience-age span, .audience-theatre span { font-size: 0; }
.audience-gender span::before { content: '57% male\A 36% female\A 7% other'; white-space: pre-line; font: 500 15px/1.65 'DM Sans', sans-serif; }
.audience-age span::before { content: '35–44 largest age range\A 25–34 second-largest age range'; white-space: pre-line; font: 500 15px/1.65 'DM Sans', sans-serif; }
.audience-theatre span::before { content: '89% visit a theater at least a few times a year'; font: 500 15px/1.65 'DM Sans', sans-serif; }
.data-note { margin: 10px 0 30px !important; font-size: 12px; line-height: 1.5; color: var(--muted); }
.audience-breakdown { display: grid; grid-template-columns: 1fr 1fr; gap: 34px; margin-top: 34px; }
.audience-breakdown h3 { margin-bottom: 18px; font-size: 20px; }
.data-bars { display: grid; gap: 11px; }
.data-bars p { position: relative; display: grid; grid-template-columns: minmax(0, 1fr) 42px; gap: 10px; margin: 0; padding-bottom: 8px; font: 600 12px/1.3 'DM Sans', sans-serif; }
.data-bars p::before, .data-bars p::after { content: ''; position: absolute; left: 0; bottom: 0; height: 3px; }
.data-bars p::before { width: 100%; background: #dedbd1; }
.data-bars p::after { width: var(--value); background: var(--blue); }
.data-bars b { font: inherit; text-align: right; }
.offer-card { position: relative; display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(260px, .8fr); gap: 46px; padding: 108px 34px 34px; background: var(--paper); border: 1px solid var(--rule); }
.offer-card::before { content: 'Single issue'; position: absolute; inset: 0 0 auto; height: 68px; display: flex; align-items: center; padding: 0 34px; background: #262626; color: #fff; font: 700 23px/1.05 'Playfair Display', Georgia, serif; }
.offer-card::after { content: 'from $175'; position: absolute; top: 0; right: 34px; height: 68px; display: flex; align-items: center; color: #fff; font: italic 500 21px/1 Georgia, 'Times New Roman', serif; }
.offer-card h3 { display: none; }
.offer-card p, .offer-card li, .package-note { font-family: Georgia, 'Times New Roman', serif; font-size: 16px; line-height: 1.6; }
.offer-copy > p { margin: 0 0 16px; }
.offer-card ul { margin: 20px 0 0; padding-left: 20px; }
.price { display: flex; flex-direction: column; align-items: flex-start; margin-top: 28px; }
.price > span { display: none; }
.price strong { display: none; }
.price .button { margin-top: 0; }
.placement-visual { align-self: stretch; padding-left: 34px; border-left: 1px solid var(--rule); }
.placement-visual > p { margin: 12px 0 0; text-align: center; color: var(--muted); font: 700 10px/1.4 'DM Sans', sans-serif; text-transform: uppercase; letter-spacing: .08em; }
.strategy-grid { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(300px, .75fr); gap: 64px; align-items: start; }
.strategy-copy p { margin: 0 0 22px; font-size: 17px; line-height: 1.65; }
.strategy-copy p:last-child { margin-bottom: 0; }
.strategy-sequence { display: grid; gap: 8px; padding-left: 28px; border-left: 2px solid var(--dark); }
.strategy-sequence > div { display: grid; grid-template-columns: 92px minmax(0, 1fr); min-height: 62px; border: 1px solid var(--dark); }
.strategy-sequence b, .strategy-sequence span { display: flex; align-items: center; padding: 12px 16px; font: 700 13px/1.2 'DM Sans', sans-serif; }
.strategy-sequence b { background: var(--dark); color: #fff; }
.strategy-sequence span { background: var(--blue); color: #fff; }
.strategy-sequence .strategy-skip { border-style: dashed; border-color: var(--muted); }
.strategy-sequence .strategy-skip span { justify-content: center; background: transparent; color: var(--muted); font-family: Georgia, 'Times New Roman', serif; font-style: italic; font-weight: 500; }
.newsletter-window { height: 455px; overflow: hidden; border: 2px solid var(--dark); background: #fff; }
.newsletter-sheet { background: var(--cream); animation: placement-scroll 14s ease-in-out infinite alternate; }
.newsletter-sheet small { display: block; font: 700 8px/1.3 'DM Sans', sans-serif; text-transform: uppercase; letter-spacing: .14em; }
.newsletter-sheet b { display: block; font: 700 17px/1.15 'Playfair Display', serif; }
.newsletter-sheet i { display: block; height: 6px; margin-top: 8px; background: #d8d4ca; }
.mock-masthead { min-height: 72px; padding: 11px 22px; background: var(--dark); color: var(--cream); border-bottom: 1px solid #4b4842; }
.mock-masthead span { display: block; color: var(--blue); font: 700 8px/1.3 'DM Sans', sans-serif; text-transform: uppercase; letter-spacing: .12em; }
.mock-masthead i { height: 28px; margin-top: 8px; background: #343434; }
.mock-hero { min-height: 205px; padding: 22px; background: var(--dark); color: var(--cream); }
.mock-hero small { display: block; margin-bottom: 12px; color: var(--blue); }
.mock-hero b { max-width: 210px; font-size: 25px; }
.mock-hero i { height: 76px; margin-top: 16px; background: #4b4842; }
.mock-support { min-height: 150px; padding: 20px 22px; text-align: center; }
.mock-support small { color: var(--muted); }
.mock-sponsor-mark { margin: 13px 0 8px; padding: 18px; background: var(--blue); color: white; font: 700 18px/1 'DM Sans', sans-serif; }
.mock-support span, .mock-sponsor-block span { font: 700 8px/1.3 'DM Sans', sans-serif; text-transform: uppercase; letter-spacing: .1em; }
.mock-support > span { display: none; }
.mock-film { min-height: 105px; padding: 16px 22px; background: var(--cream); color: var(--dark); }
.mock-film small { margin-bottom: 12px; color: var(--muted); }
.mock-film i { background: #d8d4ca; }
.mock-sponsor-block { min-height: 225px; padding: 24px 22px; background: var(--amber); color: var(--dark); }
.mock-sponsor-block small { margin-bottom: 12px; }
.mock-sponsor-block i { background: rgba(38,38,38,.2); }
.mock-sponsor-block span { display: block; margin-top: 16px; }
.mock-community { min-height: 180px; padding: 24px 22px; }
.mock-community small { margin-bottom: 12px; color: var(--blue); }
@keyframes placement-scroll { 0%, 18% { transform: translateY(0); } 82%, 100% { transform: translateY(-452px); } }
.package-note { margin: 18px 0 0; padding: 20px 22px; background: #F5EFDF; }
.process-list { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 0; border: 1px solid var(--rule); }
.process-list li { display: grid; grid-template-columns: 32px 1fr; gap: 14px; padding: 25px; background: var(--paper); border-bottom: 1px solid var(--rule); }
.process-list li:nth-child(odd) { border-right: 1px solid var(--rule); }
.process-list li:nth-last-child(-n+2) { border-bottom: 0; }
.process-list > li > span { display: grid; place-items: center; width: 28px; height: 28px; border-radius: 50%; background: var(--dark); color: white; font: 700 12px/1 'DM Sans', sans-serif; }
.process-list h3 { margin: 2px 0 7px; font-size: 20px; }
.process-list p { margin: 0; font-family: Georgia, 'Times New Roman', serif; font-size: 15px; line-height: 1.55; color: var(--muted); }
.availability-section { scroll-margin-top: 20px; padding-top: 76px; border-top: 1px solid var(--rule); }
.compact-head { display: grid; grid-template-columns: 1fr; gap: 14px; margin-bottom: 36px; }
.compact-head h2 { margin: 12px 0 0; }
.compact-head > p { max-width: 650px; margin: 0; font-family: Georgia, 'Times New Roman', serif; font-size: 15px; line-height: 1.6; color: var(--muted); }
.availability-layout { display: grid; grid-template-columns: minmax(0, 1fr) 360px; gap: 44px; align-items: start; }
.slots { display: grid; gap: 38px; }
.slot-month h3 { display: flex; align-items: center; gap: 14px; margin: 0 0 12px; font: 700 20px/1.2 'DM Sans', sans-serif; }
.slot-month h3::after { content: ''; height: 1px; background: var(--rule); flex: 1; }
.slot-month h3 span { order: 2; color: var(--muted); font-size: 13px; }
.slot-list { display: grid; gap: 2px; }
.slot-row { min-height: 58px; display: grid; grid-template-columns: 26px 110px minmax(0, 1fr) auto; gap: 14px; align-items: center; padding: 10px 14px; background: #e7e6e1; border-left: 5px solid #c8c6bf; cursor: default; }
.slot-row.open { background: var(--paper); border: 1px solid var(--rule); border-left: 5px solid var(--blue); cursor: pointer; }
.slot-row input { width: 18px; height: 18px; margin: 0; accent-color: var(--blue); }
.slot-marker { width: 18px; }
.slot-date { font: 700 15px/1.2 'DM Sans', sans-serif; }
.slot-edition, .slot-state { font: 600 12px/1.3 'DM Sans', sans-serif; color: var(--muted); }
.slot-state { text-transform: uppercase; letter-spacing: .06em; }
.slot-row.open:has(input:checked) { background: #dcecf1; border-color: var(--blue); }
.waitlist-section { padding: 34px; background: #ecebe7; border: 0; }
.waitlist-section h2 { margin-top: 0; }
.waitlist-section > p { margin-bottom: 24px; font-size: 17px; line-height: 1.6; }
.waitlist-section small { display: block; margin-top: 14px; color: var(--muted); font: 400 13px/1.5 Georgia, serif; }
.waitlist-form { display: grid; grid-template-columns: 1fr auto; }
.waitlist-form input { min-height: 50px; border-right: 0; }
.waitlist-form .button { border-radius: 0 3px 3px 0; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.request-card { position: sticky; top: 24px; display: grid; gap: 16px; padding: 28px; background: var(--paper); border: 1px solid var(--rule); }
.request-card h3 { margin: 8px 0; }
.request-card .form-note, .request-card small { margin: 0; font-family: Georgia, 'Times New Roman', serif; color: var(--muted); font-size: 14px; line-height: 1.5; }
.request-card textarea { min-height: 100px; }
.request-heading { display: flex; align-items: flex-start; justify-content: space-between; gap: 14px; }
.selection-count { flex: none; padding: 7px 10px; border-radius: 999px; background: #e7e3d8; font: 700 10px/1 'DM Sans', sans-serif; letter-spacing: .06em; text-transform: uppercase; }
.selection-summary { padding: 14px 16px; background: #f0eee7; border-left: 4px solid var(--rule); }
.selection-summary.has-selection { background: #dcecf1; border-left-color: var(--blue); }
.selection-summary p { margin: 0; font: 700 12px/1.4 'DM Sans', sans-serif; }
.selection-summary ul { display: none; margin: 9px 0 0; padding: 0; list-style: none; }
.selection-summary.has-selection ul { display: grid; gap: 4px; }
.selection-summary li { font: 600 12px/1.4 'DM Sans', sans-serif; color: var(--muted); }

@media (max-width: 800px) {
  body { font-size: 16px; }
  .hero, .section-head, .dashboard { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(-n+2) { border-bottom: 1px solid var(--dark); }
  .calendar { grid-template-columns: 1fr 1fr; }
  .side { position: static; display: flex; overflow-x: auto; }
  .ad-hero { min-height: 0; grid-template-columns: 1fr; gap: 36px; padding: 50px 0; }
  .hero-feature { min-height: 500px; margin-bottom: -50px; }
  .media-kit-grid { grid-template-columns: 1fr; gap: 44px; }
  .page-nav { position: static; grid-template-columns: repeat(3, 1fr); }
  .page-nav p { grid-column: 1 / -1; }
  .page-nav a { padding-right: 10px; }
  .availability-layout { grid-template-columns: 1fr; }
  .request-card { position: static; }
}

@media (max-width: 520px) {
  .brand img { width: 88px; height: 54px; }
  .site-head nav { gap: 10px; }
  .site-head nav a:first-child { display: none; }
  .page { padding: 30px 16px 70px; }
  .hero { padding-top: 28px; }
  .calendar, .form-grid, .invoice-grid { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }
  .stats { grid-template-columns: 1fr; }
  .stat { border-right: 0; border-bottom: 1px solid var(--dark); }
  .stat:last-child { border-bottom: 0; }
  .row { align-items: flex-start; flex-direction: column; }
  .ad-hero { padding: 38px 0 44px; }
  .hero-copy h1 { font-size: 45px; }
  .hero-feature { min-height: 440px; margin-bottom: -44px; padding: 20px 12px 0; }
  .edition-stack { height: 390px; }
  .edition-preview { width: 82%; height: 475px; }
  .edition-hero { height: 370px; grid-template-rows: 11px 78px 47px 175px; gap: 5px; padding: 18px; }
  .edition-hero h3 { font-size: 23px; }
  .edition-hero img { height: 175px; }
  .stats-band { grid-template-columns: 1fr 1fr; margin-top: 18px; }
  .stats-band .stat { border-right: 1px solid var(--rule); border-bottom: 1px solid var(--rule); padding: 18px 12px; }
  .stats-band .stat:nth-child(2n) { border-right: 0; }
  .stats-band .stat:nth-last-child(-n+2) { border-bottom: 0; }
  .media-kit-grid { padding-top: 50px; }
  .page-nav { grid-template-columns: 1fr 1fr; }
  .intro { margin-bottom: 52px; font-size: 19px; }
  .kit-section { padding-bottom: 52px; margin-bottom: 52px; }
  .why-list, .fit-list, .detail-grid, .audience-profile, .audience-breakdown, .offer-card, .compact-head, .process-list, .strategy-grid { grid-template-columns: 1fr; }
  .why-list { gap: 42px; }
  .why-row { grid-template-rows: auto auto; }
  .why-copy h3 { min-height: 0; }
  .reader-quotes { margin-top: 28px; }
  .waitlist-form { grid-template-columns: 1fr; gap: 10px; }
  .waitlist-form input { border-right: 1px solid var(--dark); }
  .waitlist-form .button { border-radius: 3px; }
  .audience-profile article { min-height: 0; border-right: 0; border-bottom: 1px solid var(--rule); }
  .audience-profile article:last-child { border-bottom: 0; }
  .audience-profile article { grid-template-columns: 24px 112px minmax(0, 1fr); column-gap: 12px; padding: 18px; }
  .audience-profile span { font-size: 13px; }
  .audience-gender span::before, .audience-age span::before, .audience-theatre span::before { font-size: 13px; }
  .offer-card { padding: 92px 24px 24px; }
  .offer-card::before { height: 60px; padding: 0 24px; }
  .offer-card::after { right: 24px; height: 60px; font-size: 17px; }
  .placement-visual { padding: 24px 0 0; border: 0; border-top: 1px solid var(--rule); }
  .strategy-grid { gap: 36px; }
  .strategy-sequence { padding-left: 14px; }
  .strategy-sequence > div { grid-template-columns: 74px minmax(0, 1fr); }
  .process-list li:nth-child(odd) { border-right: 0; }
  .process-list li:nth-last-child(2) { border-bottom: 1px solid var(--rule); }
  .slot-row { grid-template-columns: 24px 82px minmax(0, 1fr); gap: 9px; padding: 10px; }
  .slot-edition { display: none; }
  .slot-state { text-align: right; font-size: 10px; }
}

@media (prefers-reduced-motion: reduce) {
  .newsletter-sheet { animation: none; transform: translateY(-315px); }
}
