/*
Theme Name: Ignite Conversions
Theme URI: https://igniteconversions.com
Author: Jeff Bollettino
Author URI: https://igniteconversions.com
Description: Custom mobile-phone-frame theme for Ignite Conversions
Version: 2.0.1
License: Private
Text Domain: ignite-conversions
*/

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ── TOKENS ── */
:root {
  --orange:     #e8620a;
  --orange-dim: #c45208;
  --bg:         #ffffff;
  --glass:      rgba(0,0,0,0.04);
  --rule:       rgba(0,0,0,0.10);
  --ink:        #111111;
  --muted:      rgba(0,0,0,0.72);
}

/* ── GOOGLE FONTS ── */
/* Loaded via functions.php */

/* ── PAGE / BODY ── */
html, body {
  width: 100%;
  height: 100%;
  margin: 0;
  background: #e8620a;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  font-family: "DM Sans", sans-serif;
}

/* ── PHONE FRAME ── */
#phone-frame {
  width: min(418px, 100vw);
  height: calc(100vh - 40px);
  max-height: 872px;
  flex-shrink: 0;
  background: linear-gradient(160deg, #2e2e2e 0%, #141414 100%);
  border-radius: 50px;
  padding: 14px;
  position: relative;
  box-shadow:
    0 0 0 1px #3a3a3a,
    inset 0 0 0 1px #484848,
    0 8px 32px rgba(0,0,0,0.7),
    0 32px 80px rgba(0,0,0,0.5),
    0 0 100px rgba(232,98,10,0.12);
}

/* Power button */
#phone-frame::before {
  content: "";
  position: absolute;
  right: -4px;
  top: 160px;
  width: 4px;
  height: 68px;
  background: #2e2e2e;
  border-radius: 0 3px 3px 0;
  box-shadow: 0 0 0 1px #3a3a3a;
}

/* Volume buttons */
#phone-frame::after {
  content: "";
  position: absolute;
  left: -4px;
  top: 120px;
  width: 4px;
  height: 38px;
  background: #2e2e2e;
  border-radius: 3px 0 0 3px;
  box-shadow:
    0 0 0 1px #3a3a3a,
    0 58px 0 #2e2e2e,
    0 58px 0 1px #3a3a3a;
}

/* ── SCREEN ── */
.phone {
  position: absolute;
  top: 14px; left: 14px;
  right: 14px; bottom: 14px;
  width: auto;
  background: var(--bg);
  border-radius: 36px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* ── NOTCH ── */
.notch {
  width: 126px;
  height: 30px;
  background: #111;
  border-radius: 0 0 20px 20px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
  flex-shrink: 0;
}
.notch::before {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%,-50%);
  width: 10px; height: 10px;
  background: #222;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.08);
}

/* ── STATUS BAR ── */
.status {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 16px 0;
  flex-shrink: 0;
}
.status-left {
  display: flex;
  align-items: center;
  gap: 6px;
}
.status-right {
  display: flex;
  align-items: center;
  gap: 6px;
}
.status-time {
  font-size: 12px;
  font-weight: 500;
  color: #111;
  letter-spacing: 0.02em;
}
.status-nav-btn {
  background: none;
  border: none;
  padding: 0 2px;
  cursor: pointer;
  font-size: 16px;
  line-height: 1;
  color: #111;
  opacity: 0.25;
  transition: opacity 0.15s;
  font-family: sans-serif;
  display: flex;
  align-items: center;
}
.status-nav-btn.active {
  opacity: 0.8;
}
.status-nav-btn.active:hover {
  opacity: 1;
}
.status-icons {
  display: flex;
  gap: 5px;
  align-items: center;
}
.status-icons svg { display: block; }

/* ── SCROLLABLE CONTENT ── */
.phone-content {
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.phone-content::-webkit-scrollbar { display: none; }

/* ── HOME INDICATOR ── */
.home-indicator {
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.home-bar {
  width: 120px;
  height: 4px;
  background: rgba(0,0,0,0.15);
  border-radius: 2px;
}

/* ── LOGO ROW ── */
.logo-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 28px 0;
  margin-bottom: 24px;
}
.site-logo { width: 170px; height: auto; }

/* ── HAMBURGER MENU ── */
.menu-wrap { position: relative; }

.menu-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: #b0b0b0;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0;
  flex-shrink: 0;
  transition: background 0.2s;
}
.menu-btn:hover { background: #909090; }
.menu-btn span {
  display: block;
  width: 16px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}
.menu-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-btn.open span:nth-child(2) { opacity: 0; }
.menu-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.menu-dropdown {
  position: fixed;
  background: #ffffff;
  border: 1px solid var(--rule);
  border-radius: 10px;
  padding: 8px 0;
  min-width: 190px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  opacity: 0;
  transform: translateY(-8px) scale(0.96);
  transform-origin: top right;
  pointer-events: none;
  transition: opacity 0.2s, transform 0.2s;
  z-index: 9999;
}
.menu-dropdown.open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.menu-dropdown a {
  display: block;
  padding: 11px 20px;
  font-size: 14px;
  font-weight: 400;
  color: var(--ink);
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}
.menu-dropdown a:hover { background: rgba(232,98,10,0.07); color: var(--orange); }
.menu-dropdown a + a { border-top: 1px solid var(--rule); }
.menu-dropdown a.current { color: var(--orange); font-weight: 500; }

/* ── BREADCRUMBS ── */
.breadcrumbs {
  padding: 12px 28px 0;
  font-size: 11px;
  color: var(--muted);
  line-height: 1.4;
}
.breadcrumbs a {
  color: var(--orange);
  text-decoration: none;
}
.breadcrumbs a:hover { text-decoration: underline; }
.breadcrumbs .sep { margin: 0 5px; color: var(--muted); }

/* ── DIVIDER ── */
.divider {
  height: 1px;
  background: var(--rule);
  margin: 0 28px;
  border: none;
}

/* ── SECTION ── */
.section { padding: 36px 28px; }
.section-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}
.section-headline {
  font-family: "Inter Tight", sans-serif;
  font-size: 28px;
  font-weight: 800;
  line-height: 1.05;
  color: var(--ink);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.section-body {
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
  font-weight: 300;
}

/* ── HERO ── */
.hero {
  padding: 32px 28px 0;
  position: relative;
  overflow: visible;
}
.hero-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
}
.hero-headline {
  font-family: "Inter Tight", sans-serif;
  font-size: 30px;
  font-weight: 800;
  line-height: 1.0;
  color: var(--ink);
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero-headline em { color: var(--orange); font-style: normal; }

.glow {
  position: absolute;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(232,98,10,0.07) 0%, transparent 70%);
  top: -60px; right: -40px;
  pointer-events: none;
}

/* ── BODY TEXT (Fraunces) ── */
.body-text {
  font-family: "Fraunces", serif;
  font-size: 16px;
  line-height: 1.75;
  color: #1a1a1a;
  font-weight: 300;
  margin-bottom: 18px;
}
.body-text strong.highlight { color: var(--orange); font-weight: 400; }

/* ── JEFF INTRO ── */
.jeff-intro {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}
.jeff-avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  flex-shrink: 0;
  border: 2px solid var(--orange);
}
.jeff-intro-text {
  font-family: "Fraunces", serif;
  font-size: 16px;
  line-height: 1.75;
  color: #1a1a1a;
  font-weight: 300;
}

/* ── OFFER BLOCK ── */
.offer-block {
  margin: 28px 0;
  padding: 20px;
  background: var(--glass);
  border-left: 3px solid var(--orange);
  border-radius: 4px;
}
.offer-label {
  font-family: "Fraunces", serif;
  font-size: 16px;
  font-weight: 300;
  color: var(--ink);
  margin-bottom: 10px;
}
.offer-headline {
  font-family: "Inter Tight", sans-serif;
  font-size: 21px;
  font-weight: 800;
  line-height: 1.1;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.offer-headline em { font-style: italic; }

/* ── BUTTONS ── */
.btn-primary {
  background: var(--orange);
  color: #fff;
  border: none;
  padding: 16px 24px;
  font-family: "DM Sans", sans-serif;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.04em;
  border-radius: 4px;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  display: block;
  transition: background 0.2s;
  text-transform: uppercase;
  width: 100%;
}
.btn-primary:hover { background: var(--orange-dim); }

.btn-secondary {
  background: transparent;
  color: var(--ink);
  border: 1px solid rgba(0,0,0,0.15);
  padding: 15px 24px;
  font-family: "DM Sans", sans-serif;
  font-size: 15px;
  font-weight: 400;
  border-radius: 4px;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  display: block;
  width: 100%;
}

/* ── CTA GROUP ── */
.cta-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 40px;
}

/* ── TRUTH CARDS ── */
.truth-cards {
  padding: 0 28px 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.truth-card {
  background: var(--glass);
  border: 1px solid var(--rule);
  border-radius: 6px;
  padding: 20px;
  position: relative;
  overflow: hidden;
}
.truth-card::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--orange);
}
.truth-number {
  font-family: "Inter Tight", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--orange);
  margin-bottom: 6px;
}
.truth-title {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 6px;
  line-height: 1.3;
}
.truth-body {
  font-size: 13px;
  line-height: 1.6;
  color: var(--muted);
  font-weight: 300;
}

/* ── SERVICES LIST ── */
.services {
  padding: 0 28px 36px;
  display: flex;
  flex-direction: column;
}
.service-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid var(--rule);
  text-decoration: none;
}
.service-row:first-child { border-top: 1px solid var(--rule); }
.service-name {
  font-size: 14px;
  font-weight: 400;
  color: var(--ink);
}
.service-arrow { color: var(--orange); font-size: 18px; }

/* ── STAT STRIP ── */
.stat-strip {
  padding: 36px 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.stat { text-align: center; }
.stat-number {
  font-family: "Inter Tight", sans-serif;
  font-size: 42px;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label {
  font-size: 11px;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ── FORMS ── */
.form-section-inline { padding: 28px 0 0; }
.form-fields { display: flex; flex-direction: column; gap: 12px; }
.field-label {
  font-size: 13px;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: -4px;
}
.offer-input {
  width: 100%;
  padding: 13px 16px;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  color: var(--ink);
  background: #fff;
  border: 1px solid rgba(0,0,0,0.18);
  border-radius: 4px;
  outline: none;
  transition: border-color 0.2s;
  box-shadow: inset 0 1px 3px rgba(0,0,0,0.06);
}
.offer-input::placeholder { color: var(--muted); }
.offer-input:focus { border-color: var(--orange); }
.demand-note {
  font-size: 11px;
  line-height: 1.6;
  color: var(--muted);
  font-style: italic;
  text-align: center;
  padding-top: 4px;
}
.field-error {
  color: #c0392b;
  font-size: 12px;
  margin-top: -6px;
  margin-bottom: 4px;
  display: none;
}

/* ── FOOTER ── */
.site-footer {
  padding: 24px 28px 36px;
  border-top: 1px solid var(--rule);
  text-align: center;
}
.footer-text {
  font-size: 11px;
  color: rgba(0,0,0,0.45);
  line-height: 1.6;
}
.footer-text a {
  color: rgba(0,0,0,0.45);
  text-decoration: none;
}
.footer-text a:hover { color: var(--orange); }

/* ── FOOTNOTE ── */
.footnote {
  font-size: 11px;
  line-height: 1.6;
  color: #1a1a1a;
  font-style: italic;
  margin-top: -8px;
  margin-bottom: 24px;
  padding-top: 8px;
  border-top: 1px solid var(--rule);
}

/* ════════════════════════════════════════
   BLOG STYLES
   ════════════════════════════════════════ */

/* ── BLOG INDEX ── */
.blog-wrap { padding: 0 28px 40px; }

.blog-page-title {
  font-family: "Inter Tight", sans-serif;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.05;
  color: var(--ink);
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.blog-page-subtitle {
  font-size: 13px;
  color: var(--muted);
  font-weight: 300;
  margin-bottom: 28px;
}

.post-card {
  border-bottom: 1px solid var(--rule);
  padding: 24px 0;
}
.post-card:first-of-type { border-top: 1px solid var(--rule); }

.post-card-kicker {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 8px;
  font-family: "DM Sans", sans-serif;
}
.post-card-title {
  font-family: "Inter Tight", sans-serif;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.1;
  color: var(--ink);
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin-bottom: 8px;
  text-decoration: none;
  display: block;
}
.post-card-title:hover { color: var(--orange); }

.post-card-excerpt {
  font-family: "Fraunces", serif;
  font-size: 14px;
  line-height: 1.65;
  color: var(--muted);
  font-weight: 300;
  margin-bottom: 12px;
}
.post-card-meta {
  font-size: 11px;
  color: var(--muted);
  display: flex;
  gap: 12px;
  align-items: center;
}
.post-card-meta .read-more {
  color: var(--orange);
  text-decoration: none;
  font-weight: 500;
  margin-left: auto;
  font-size: 12px;
  letter-spacing: 0.05em;
}
.post-card-meta .read-more:hover { text-decoration: underline; }

/* ── PAGINATION ── */
.pagination {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 0 0;
  font-size: 13px;
}
.pagination a {
  color: var(--orange);
  text-decoration: none;
  font-weight: 500;
  padding: 8px 14px;
  border: 1px solid var(--rule);
  border-radius: 4px;
  transition: background 0.15s;
}
.pagination a:hover { background: rgba(232,98,10,0.07); }
.pagination .page-numbers {
  color: var(--muted);
  font-size: 12px;
}

/* ── SINGLE POST ── */
.article-wrap { padding: 0 28px 40px; }

.kicker {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
  font-family: "DM Sans", sans-serif;
}

.post-h1 {
  font-family: "Inter Tight", sans-serif;
  font-size: 26px;
  font-weight: 800;
  line-height: 1.05;
  color: var(--ink);
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.post-meta {
  font-size: 11px;
  color: var(--muted);
  margin-bottom: 24px;
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}
.post-meta .author-avatar {
  width: 28px; height: 28px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 1px solid var(--orange);
  flex-shrink: 0;
}

.intro-text {
  font-family: "Fraunces", serif;
  font-size: 16px;
  line-height: 1.75;
  color: #1a1a1a;
  font-weight: 400;
  margin-bottom: 16px;
}

/* Body text in articles (slightly smaller than homepage) */
.article-wrap .body-text {
  font-size: 15px;
  color: var(--muted);
}

.post-h2 {
  font-family: "Inter Tight", sans-serif;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.1;
  color: var(--ink);
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin: 28px 0 12px;
}

.post-h3 {
  font-family: "DM Sans", sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 20px 0 10px;
}

.post-ul {
  margin: 0 0 16px 18px;
}
.post-ul li {
  font-family: "Fraunces", serif;
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
  font-weight: 300;
  margin-bottom: 10px;
}
.post-ul li strong { color: var(--ink); font-weight: 400; }

/* Insight callout */
.insight-callout {
  background: var(--glass);
  border-left: 3px solid var(--ink);
  border-radius: 4px;
  padding: 18px;
  margin: 20px 0;
}
.insight-callout .callout-label {
  font-family: "DM Sans", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 8px;
}
.insight-callout .callout-text {
  font-family: "Fraunces", serif;
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
  font-weight: 300;
}

/* CTA callout (orange) */
.cta-callout {
  background: rgba(232,98,10,0.05);
  border-left: 3px solid var(--orange);
  border-radius: 4px;
  padding: 20px;
  margin: 28px 0;
}
.cta-callout-headline {
  font-family: "Inter Tight", sans-serif;
  font-size: 16px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}
.cta-callout p {
  font-family: "Fraunces", serif;
  font-size: 14px;
  line-height: 1.65;
  color: var(--muted);
  font-weight: 300;
  margin-bottom: 14px;
}

/* Post nav (prev/next) */
.post-nav {
  padding: 28px 0 0;
  border-top: 1px solid var(--rule);
  display: flex;
  justify-content: space-between;
  gap: 12px;
}
.post-nav a {
  font-size: 12px;
  color: var(--orange);
  text-decoration: none;
  font-weight: 500;
}
.post-nav a:hover { text-decoration: underline; }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { opacity: 0; animation: fadeUp 0.8s ease forwards; }
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.5s; }
.delay-4 { animation-delay: 0.6s; }
.delay-5 { animation-delay: 0.7s; }

/* ════════════════════════════════════════
   GUTENBERG BLOCK EDITOR CONTENT STYLES
   Applies to .post-content — everything
   you write in the WordPress editor gets
   these styles automatically.
   ════════════════════════════════════════ */

.post-content {
  /* Base inherited from article-wrap padding */
}

/* Paragraphs */
.post-content p {
  font-family: "Fraunces", serif;
  font-size: 15px;
  line-height: 1.75;
  color: var(--muted);
  font-weight: 300;
  margin-bottom: 16px;
}

/* Lead paragraph (first p after h1, or .has-large-font-size) */
.post-content > p:first-of-type,
.post-content p.has-large-font-size {
  font-size: 16px;
  color: #1a1a1a;
  font-weight: 400;
}

/* Headings */
.post-content h2 {
  font-family: "Inter Tight", sans-serif;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.1;
  color: var(--ink);
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin: 32px 0 12px;
}

.post-content h3 {
  font-family: "DM Sans", sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 24px 0 10px;
}

.post-content h4 {
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  margin: 20px 0 8px;
}

/* Lists */
.post-content ul,
.post-content ol {
  margin: 0 0 16px 18px;
}

.post-content ul li,
.post-content ol li {
  font-family: "Fraunces", serif;
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
  font-weight: 300;
  margin-bottom: 10px;
}

.post-content ul li strong,
.post-content ol li strong {
  color: var(--ink);
  font-weight: 400;
}

/* Horizontal rule */
.post-content hr {
  height: 1px;
  background: var(--rule);
  border: none;
  margin: 24px 0;
}

/* Blockquote — styled as insight callout */
.post-content blockquote {
  background: var(--glass);
  border-left: 3px solid var(--ink);
  border-radius: 4px;
  padding: 18px;
  margin: 20px 0;
}

.post-content blockquote p {
  font-family: "Fraunces", serif;
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
  font-weight: 300;
  margin-bottom: 0;
}

.post-content blockquote cite {
  display: block;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  font-style: normal;
  margin-top: 10px;
}

/* Bold and italic inline */
.post-content strong { color: var(--ink); font-weight: 400; }
.post-content em { font-style: italic; }

/* Links */
.post-content a {
  color: var(--orange);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}
.post-content a:hover { color: var(--orange-dim); }

/* Images */
.post-content img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
  margin: 8px 0 16px;
}
.post-content figure {
  margin: 20px 0;
}
.post-content figcaption {
  font-size: 11px;
  color: var(--muted);
  text-align: center;
  margin-top: 6px;
  font-style: italic;
}

/* Code */
.post-content code {
  font-family: "Courier New", monospace;
  font-size: 13px;
  background: var(--glass);
  border: 1px solid var(--rule);
  padding: 2px 6px;
  border-radius: 3px;
  color: var(--ink);
}
.post-content pre {
  background: var(--glass);
  border: 1px solid var(--rule);
  border-radius: 4px;
  padding: 16px;
  overflow-x: auto;
  margin-bottom: 16px;
}
.post-content pre code {
  background: none;
  border: none;
  padding: 0;
}

/* Gutenberg separator block */
.post-content .wp-block-separator {
  height: 1px;
  background: var(--rule);
  border: none;
  margin: 24px 0;
}

/* Gutenberg pullquote */
.post-content .wp-block-pullquote {
  border-top: 3px solid var(--orange);
  border-bottom: 3px solid var(--orange);
  padding: 20px 0;
  margin: 28px 0;
  text-align: left;
}
.post-content .wp-block-pullquote p {
  font-family: "Inter Tight", sans-serif;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.2;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin-bottom: 0;
}

/* Gutenberg table */
.post-content table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 16px;
  font-size: 13px;
}
.post-content th {
  font-family: "DM Sans", sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  padding: 10px 12px;
  border-bottom: 2px solid var(--rule);
  text-align: left;
}
.post-content td {
  font-family: "Fraunces", serif;
  font-size: 13px;
  color: var(--muted);
  font-weight: 300;
  padding: 10px 12px;
  border-bottom: 1px solid var(--rule);
  vertical-align: top;
}

/* Orange highlight span (use in editor via custom HTML block) */
.post-content .highlight { color: var(--orange); }

/* ════════════════════════════════════════
   CONTACT PAGE
   ════════════════════════════════════════ */
.contact-wrap {
  padding: 32px 28px 40px;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 24px;
}
.contact-textarea {
  resize: none;
  min-height: 110px;
  line-height: 1.6;
}
.contact-success {
  display: none;
  background: rgba(39,174,96,0.08);
  border: 1px solid rgba(39,174,96,0.3);
  border-radius: 4px;
  padding: 14px 16px;
  font-family: "Fraunces", serif;
  font-size: 14px;
  line-height: 1.6;
  color: #1a6b3a;
}
.contact-error {
  display: none;
  background: rgba(192,57,43,0.07);
  border: 1px solid rgba(192,57,43,0.25);
  border-radius: 4px;
  padding: 14px 16px;
  font-family: "Fraunces", serif;
  font-size: 14px;
  line-height: 1.6;
  color: #922b21;
}
.contact-error a { color: inherit; }
