/* ── ForgeOn Service Flyer — print-ready, letter size ── */
@page { size: letter; margin: 0; }

:root {
  --bg: #0e0e0e;
  --bg-2: #161616;
  --accent: #E8540A;
  --accent-dim: rgba(232,84,10,0.12);
  --fg: #f0ede8;
  --fg-muted: #9a9589;
  --border: rgba(240,237,232,0.1);
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  font-weight: 400;
  -webkit-print-color-adjust: exact;
  print-color-adjust: exact;
  width: 8.5in;
  min-height: 11in;
  margin: 0;
}

/* ── Header ── */
.flyer-header {
  background: var(--accent);
  padding: 0.6in 0.5in 0.5in;
  position: relative;
  overflow: hidden;
}
.flyer-header::after {
  content: '';
  position: absolute;
  top: -0.3in;
  right: -0.3in;
  width: 2.5in;
  height: 2.5in;
  border-radius: 50%;
  background: rgba(0,0,0,0.15);
}
.flyer-brand {
  font-family: 'Bebas Neue', 'Impact', sans-serif;
  font-size: 3.2rem;
  letter-spacing: 0.1em;
  color: #fff;
  line-height: 1;
  position: relative;
  z-index: 1;
}
.flyer-tagline {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  margin-top: 0.1in;
  position: relative;
  z-index: 1;
}
.flyer-phone-block {
  position: absolute;
  top: 0.45in;
  right: 0.5in;
  text-align: right;
  z-index: 1;
}
.flyer-phone-label {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}
.flyer-phone-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  color: #fff;
  line-height: 1;
}

/* ── Emergency Banner ── */
.emergency-bar {
  background: #1a1a1a;
  border-top: 3px solid var(--accent);
  border-bottom: 3px solid var(--accent);
  padding: 0.25in 0.5in;
  display: flex;
  align-items: center;
  gap: 0.3in;
}
.emergency-icon {
  width: 0.5in;
  height: 0.5in;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  color: #fff;
  line-height: 1;
}
.emergency-text {
  flex: 1;
}
.emergency-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem;
  letter-spacing: 0.05em;
  color: var(--accent);
  line-height: 1;
}
.emergency-sub {
  font-size: 0.75rem;
  color: var(--fg-muted);
  margin-top: 0.05in;
}
.emergency-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  color: #fff;
  letter-spacing: 0.03em;
  text-align: right;
  line-height: 1;
}

/* ── Services Grid ── */
.services-section {
  padding: 0.35in 0.5in 0.3in;
}
.services-header {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 0.25in;
  border-bottom: 1px solid var(--border);
  padding-bottom: 0.1in;
}
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.22in 0.35in;
}
.service-item {
  border-left: 3px solid var(--accent);
  padding-left: 0.2in;
}
.service-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  color: var(--fg);
  line-height: 1;
  margin-bottom: 0.05in;
}
.service-desc {
  font-size: 0.7rem;
  color: var(--fg-muted);
  line-height: 1.4;
}

/* ── Divider ── */
.flyer-divider {
  height: 1px;
  background: linear-gradient(to right, var(--accent), transparent);
  margin: 0.1in 0.5in;
}

/* ── Pricing Rates ── */
.pricing-section {
  padding: 0.25in 0.5in;
  background: var(--accent);
}
.pricing-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.08em;
  color: #fff;
  line-height: 1;
  margin-bottom: 0.2in;
}
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.15in;
}
.price-card {
  background: rgba(0,0,0,0.25);
  padding: 0.2in;
  border-radius: 2px;
}
.price-label {
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 0.05in;
}
.price-value {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.7rem;
  color: #fff;
  letter-spacing: 0.03em;
  line-height: 1;
}
.price-note {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.65);
  margin-top: 0.05in;
  line-height: 1.3;
}
.price-card--highlight {
  background: rgba(0,0,0,0.4);
  border: 1px solid rgba(255,255,255,0.2);
}

/* ── Service Area ── */
.area-section {
  padding: 0.25in 0.5in;
  display: flex;
  align-items: flex-start;
  gap: 0.3in;
  background: #111;
}
.area-icon {
  width: 0.45in;
  height: 0.45in;
  background: var(--accent-dim);
  border: 1px solid var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.05in;
}
.area-icon svg { width: 20px; height: 20px; }
.area-content { flex: 1; }
.area-label {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 0.08in;
}
.area-list {
  font-size: 0.8rem;
  color: var(--fg-muted);
  line-height: 1.6;
}
.area-list strong {
  color: var(--fg);
  font-weight: 500;
}

/* ── Footer CTA ── */
.flyer-footer {
  padding: 0.3in 0.5in;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-cta {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  letter-spacing: 0.05em;
  color: var(--fg);
  line-height: 1;
}
.footer-cta span {
  color: var(--accent);
}
.footer-contact {
  text-align: right;
}
.footer-contact-line {
  font-size: 0.8rem;
  color: var(--fg-muted);
}
.footer-contact-line strong {
  color: var(--fg);
  font-weight: 600;
}
.footer-slogan {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-top: 0.1in;
}

/* ── Screen-only toolbar (hidden on print) ── */
.flyer-toolbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: #111;
  border-bottom: 1px solid var(--border);
  padding: 0.6rem 1rem;
}
.flyer-toolbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 8.5in;
  margin: 0 auto;
}
.flyer-toolbar-label {
  font-size: 0.75rem;
  color: var(--fg-muted);
  font-family: 'Barlow Condensed', sans-serif;
  letter-spacing: 0.08em;
}
.flyer-toolbar-actions {
  display: flex;
  gap: 0.75rem;
}
.btn-print, .btn-claim {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 1rem;
  border-radius: 3px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  cursor: pointer;
  border: none;
  transition: opacity 0.15s;
}
.btn-print:hover, .btn-claim:hover { opacity: 0.85; }
.btn-print {
  background: var(--fg);
  color: #000;
}
.btn-claim {
  background: var(--accent);
  color: #fff;
}

/* ── Print tweaks ── */
@media print {
  body { width: 8.5in; min-height: 11in; }
  .emergency-bar, .pricing-section { print-color-adjust: exact; -webkit-print-color-adjust: exact; }
  .flyer-toolbar { display: none; }
  .flyer-header { padding-top: 0.5in; }
}