/* lt5: Editorial — serif headings, magazine feel, wide reading column, pull quotes */

/* Body */
.ed-body {
  background: var(--bg);
  color: var(--ink);
  font-family: Georgia, 'Times New Roman', serif;
}

/* Header — thin underlined bar */
.ed-hd {
  border-bottom: 2px solid var(--ink);
}
.ed-hd__inner {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0.75rem var(--gap-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--gap-md);
}
.ed-hd__logo {
  font-size: 1.25rem;
  font-weight: 700;
  font-family: Georgia, 'Times New Roman', serif;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.02em;
}
.ed-hd__nav {
  display: flex;
  gap: var(--gap-md);
}
.ed-hd__nav a {
  font-family: system-ui, sans-serif;
  font-size: 0.85rem;
  color: var(--ink);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
}
.ed-hd__nav a:hover {
  border-bottom-color: var(--primary);
  color: var(--primary);
}

/* Button */
.ed-btn {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  padding: 0.5rem 1.25rem;
  text-decoration: none;
  font-family: system-ui, sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  letter-spacing: 0.03em;
}
.ed-btn:hover { opacity: 0.87; }
.ed-btn--lg { padding: 0.75rem 2rem; font-size: 1rem; }

/* Squeeze page — form-forward homepage */
.ed-squeeze {
  padding: var(--gap-xl) var(--gap-md);
  border-bottom: 2px solid var(--ink);
}
.ed-squeeze__inner {
  max-width: var(--wrap);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap-xl);
  align-items: start;
}
.ed-squeeze__h1 {
  font-size: 2.4rem;
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.15;
  margin-bottom: var(--gap-md);
  letter-spacing: -0.02em;
}
.ed-squeeze__price {
  font-family: system-ui, sans-serif;
  margin-bottom: var(--gap-md);
}
.ed-squeeze__price strong {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--primary);
  font-family: Georgia, 'Times New Roman', serif;
  line-height: 1;
}
.ed-squeeze__price span {
  display: block;
  font-size: 0.9rem;
  color: #666;
  margin-top: var(--gap-xs);
}
.ed-squeeze__benefits {
  list-style: none;
  margin-bottom: var(--gap-lg);
}
.ed-squeeze__benefits li {
  padding: var(--gap-xs) 0;
  font-size: 0.95rem;
  font-family: system-ui, sans-serif;
  line-height: 1.5;
}
.ed-squeeze__benefits li::before {
  content: "\2713 ";
  color: var(--accent);
  font-weight: 700;
}
.ed-squeeze__ra-note {
  font-family: system-ui, sans-serif;
  font-size: 0.88rem;
  color: #555;
  border-top: 1px solid #ddd;
  padding-top: var(--gap-sm);
  font-style: italic;
}
.ed-squeeze__form-col {
  background: #f8f6f2;
  padding: var(--gap-lg);
  border: 1px solid #ddd;
}
.ed-squeeze__form-heading {
  font-size: 1.3rem;
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: var(--gap-md);
}
.ed-squeeze__form {
  display: flex;
  flex-direction: column;
  gap: var(--gap-sm);
}
.ed-squeeze__form input,
.ed-squeeze__form select {
  padding: 0.65rem 0.75rem;
  border: 1px solid #ccc;
  border-radius: 0;
  font-size: 0.95rem;
  font-family: system-ui, sans-serif;
  background: #fff;
}
.ed-squeeze__form input:focus,
.ed-squeeze__form select:focus {
  outline: 2px solid var(--primary);
  border-color: var(--primary);
}
.ed-squeeze__note {
  font-family: system-ui, sans-serif;
  font-size: 0.85rem;
  color: #888;
  margin-top: var(--gap-xs);
}
.ed-squeeze__ok {
  padding: var(--gap-lg);
  background: #e8f5e9;
  font-family: system-ui, sans-serif;
}
.ed-squeeze__ok h2 {
  font-family: Georgia, 'Times New Roman', serif;
  margin-bottom: var(--gap-sm);
}

/* Compact FAQ below the fold */
.ed-faq {
  padding: var(--gap-lg) var(--gap-md);
}
.ed-faq__inner {
  max-width: 700px;
  margin: 0 auto;
}
.ed-faq__item {
  border-bottom: 1px solid #ddd;
}
.ed-faq__item summary {
  padding: var(--gap-sm) 0;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
}
.ed-faq__item summary::-webkit-details-marker { display: none; }
.ed-faq__item summary::before {
  content: "+ ";
  color: var(--primary);
  font-weight: 700;
}
.ed-faq__item[open] summary::before {
  content: "- ";
}
.ed-faq__item p {
  padding: 0 0 var(--gap-sm) 0;
  font-family: system-ui, sans-serif;
  font-size: 0.92rem;
  line-height: 1.6;
  color: #444;
}

/* Checkout */
.ed-checkout {
  padding: var(--gap-xl) var(--gap-md);
}
.ed-checkout__inner {
  max-width: var(--wrap);
  margin: 0 auto;
}
.ed-checkout__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: var(--gap-xl);
  align-items: start;
}
.ed-checkout__form-col h1 {
  font-size: 2rem;
  font-family: Georgia, 'Times New Roman', serif;
  margin-bottom: var(--gap-lg);
}
.ed-checkout__form {
  display: flex;
  flex-direction: column;
  gap: var(--gap-sm);
}
.ed-checkout__form input,
.ed-checkout__form select {
  padding: 0.65rem 0.75rem;
  border: 1px solid #ccc;
  border-radius: 0;
  font-size: 0.95rem;
  font-family: system-ui, sans-serif;
  background: #fff;
}
.ed-checkout__form input:focus,
.ed-checkout__form select:focus {
  outline: 2px solid var(--primary);
  border-color: var(--primary);
}
.ed-checkout__note {
  font-family: system-ui, sans-serif;
  font-size: 0.85rem;
  color: #888;
  margin-top: var(--gap-xs);
}
.ed-checkout__ok {
  padding: var(--gap-lg);
  background: #e8f5e9;
  font-family: system-ui, sans-serif;
}
.ed-checkout__ok h2 {
  font-family: Georgia, 'Times New Roman', serif;
  margin-bottom: var(--gap-sm);
}
.ed-checkout__summary {
  background: #f8f6f2;
  padding: var(--gap-lg);
  border: 1px solid #ddd;
  position: sticky;
  top: var(--gap-md);
}
.ed-checkout__summary h3 {
  font-family: Georgia, 'Times New Roman', serif;
  margin-bottom: var(--gap-md);
  padding-bottom: var(--gap-sm);
  border-bottom: 1px solid #ddd;
}
.ed-checkout__line {
  display: flex;
  justify-content: space-between;
  padding: var(--gap-xs) 0;
  font-family: system-ui, sans-serif;
  font-size: 0.95rem;
}
.ed-checkout__summary ul {
  list-style: none;
  margin: var(--gap-md) 0;
}
.ed-checkout__summary li {
  padding: var(--gap-xs) 0;
  font-size: 0.9rem;
  color: #555;
  font-family: system-ui, sans-serif;
}
.ed-checkout__summary li::before { content: "\2713 "; color: var(--accent); }
.ed-checkout__total {
  display: flex;
  justify-content: space-between;
  font-weight: 700;
  font-size: 1.1rem;
  border-top: 2px solid var(--ink);
  padding-top: var(--gap-sm);
  margin-top: var(--gap-sm);
  font-family: system-ui, sans-serif;
}

/* Article / Content pages */
.ed-article {
  padding: var(--gap-xl) var(--gap-md);
}
.ed-article__inner {
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.85;
  font-size: 1.05rem;
}
.ed-article__inner h1 {
  font-size: 2.2rem;
  font-family: Georgia, 'Times New Roman', serif;
  margin-bottom: var(--gap-md);
  line-height: 1.2;
}
.ed-article__inner h2 {
  font-size: 1.55rem;
  font-family: Georgia, 'Times New Roman', serif;
  margin-top: var(--gap-xl);
  margin-bottom: var(--gap-sm);
  padding-bottom: var(--gap-xs);
  border-bottom: 1px solid #e0e0e0;
}
.ed-article__inner h3 {
  font-size: 1.2rem;
  font-family: Georgia, 'Times New Roman', serif;
  margin-top: var(--gap-lg);
  margin-bottom: var(--gap-sm);
}
.ed-article__inner p {
  margin-bottom: var(--gap-md);
  font-family: Georgia, 'Times New Roman', serif;
}
.ed-article__inner ul,
.ed-article__inner ol {
  margin-bottom: var(--gap-md);
  padding-left: var(--gap-lg);
  font-family: Georgia, 'Times New Roman', serif;
}
.ed-article__inner li { margin-bottom: var(--gap-xs); }
.ed-article__inner a { color: var(--primary); }
.ed-article__inner strong { color: var(--ink); }
.ed-article__inner blockquote {
  margin: var(--gap-lg) 0;
  padding: var(--gap-md) var(--gap-lg);
  border-left: 4px solid var(--primary);
  background: #f8f6f2;
  font-style: italic;
  font-size: 1.1rem;
}

/* Footer */
.ed-ft {
  border-top: 2px solid var(--ink);
  padding: var(--gap-lg) var(--gap-md);
  font-family: system-ui, sans-serif;
  font-size: 0.85rem;
  color: #777;
}
.ed-ft__inner {
  max-width: var(--wrap);
  margin: 0 auto;
  text-align: center;
}
.ed-ft__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--gap-sm) var(--gap-md);
  margin-bottom: var(--gap-md);
}
.ed-ft__links a {
  color: #555;
  text-decoration: none;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.ed-ft__links a:hover { color: var(--primary); }
.ed-ft__addr { margin-bottom: var(--gap-sm); }
.ed-ft__legal { max-width: 600px; margin: 0 auto var(--gap-sm); line-height: 1.5; }

@media (max-width: 800px) {
  .ed-hd__inner { flex-wrap: wrap; justify-content: center; }
  .ed-hd__nav { flex-wrap: wrap; justify-content: center; gap: var(--gap-sm); }
  .ed-squeeze__inner { grid-template-columns: 1fr; }
  .ed-squeeze__h1 { font-size: 1.8rem; }
  .ed-checkout__grid { grid-template-columns: 1fr; }
}
