/*
Theme Name: Fire & Frost
Theme URI: https://fireandfrost.ca
Author: Fire & Frost
Description: Custom WordPress theme for Fire & Frost HVAC diagnosis, repair guides, and blog content.
Version: 1.0
Text Domain: fire-frost
*/

:root {
  --ff-cream: #f4f1ea;
  --ff-paper: #fffaf0;
  --ff-border: #d8d1c4;
  --ff-black: #111827;
  --ff-text: #475467;
  --ff-muted: #667085;
  --ff-rust: #b93815;
  --ff-blue: #0f5f7a;
  --ff-slate: #2f3b49;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--ff-cream);
  color: var(--ff-black);
  font-family: Inter, Arial, Helvetica, sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

.ff-site-header {
  border-bottom: 1px solid var(--ff-border);
  background: var(--ff-cream);
}

.ff-header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.ff-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.ff-brand-mark {
  width: 48px;
  height: 48px;
  border: 2px solid var(--ff-black);
  display: grid;
  place-items: center;
  font-size: 20px;
  font-weight: 900;
}

.ff-brand-name {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.ff-brand-tagline {
  margin-top: 4px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--ff-muted);
}

.ff-main-nav {
  display: flex;
  align-items: center;
  gap: 36px;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #344054;
}

.ff-header-button {
  border: 2px solid var(--ff-black);
  background: var(--ff-black);
  color: #ffffff;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

@media (max-width: 900px) {
  .ff-main-nav {
    display: none;
  }

  .ff-header-inner {
    align-items: flex-start;
  }
}

@media (max-width: 600px) {
  .ff-header-button {
    display: none;
  }

  .ff-brand-name {
    font-size: 16px;
  }

  .ff-brand-tagline {
    font-size: 10px;
  }
}
.ff-site-footer {
  border-top: 1px solid #111827;
  background: #1f2933;
  color: #ffffff;
  padding: 48px 24px;
}

.ff-footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.ff-footer-brand {
  color: #ffffff;
}

.ff-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: rgba(255, 255, 255, 0.7);
}

.ff-footer-links a:hover {
  color: #ffffff;
}

@media (max-width: 700px) {
  .ff-footer-inner {
    flex-direction: column;
  }
}
/* =========================
   BLOG HOMEPAGE
========================= */

.ff-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.ff-blog-hero {
  border-bottom: 1px solid var(--ff-border);
  background: var(--ff-cream);
  padding: 64px 0;
}

.ff-blog-hero-grid {
  display: grid;
  gap: 40px;
}

@media (min-width: 1024px) {
  .ff-blog-hero-grid {
    grid-template-columns: 0.72fr 0.28fr;
    align-items: end;
  }
}

.ff-kicker {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--ff-muted);
}

.ff-blog-hero-title {
  margin-top: 24px;
  font-size: 48px;
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.ff-blog-hero-side {
  border-left: 2px solid #a8b3bd;
  padding-left: 24px;
  font-size: 18px;
  line-height: 1.7;
  color: var(--ff-text);
}

.ff-blog-hero-path {
  margin-top: 24px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--ff-black);
}

/* =========================
   CATEGORY STRIP
========================= */

.ff-category-strip {
  border-bottom: 1px solid var(--ff-border);
  background: #ffffff;
  padding: 48px 0;
}

.ff-category-grid {
  display: grid;
  gap: 20px;
}

@media (min-width: 768px) {
  .ff-category-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.ff-category-card {
  border: 1px solid var(--ff-border);
  background: var(--ff-paper);
  padding: 28px;
}

.ff-category-card h2 {
  font-size: 28px;
  font-weight: 900;
  margin: 16px 0;
}

.ff-category-card p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ff-text);
  min-height: 100px;
}

.ff-category-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ff-card-label {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--ff-muted);
}

.ff-card-bar {
  height: 12px;
  width: 48px;
}

.ff-rust { background: var(--ff-rust); }
.ff-blue { background: var(--ff-blue); }
.ff-slate { background: var(--ff-slate); }

.ff-card-button {
  display: inline-block;
  margin-top: 20px;
  border: 2px solid var(--ff-black);
  background: var(--ff-black);
  color: #fff;
  padding: 12px 16px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

/* =========================
   FEATURED POSTS
========================= */

.ff-featured-posts {
  background: var(--ff-cream);
  padding: 64px 0;
}

.ff-section-heading {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

@media (min-width: 768px) {
  .ff-section-heading {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
  }
}

.ff-section-heading h2 {
  font-size: 36px;
  font-weight: 900;
}

.ff-section-heading p {
  max-width: 520px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ff-text);
}

.ff-post-grid {
  display: grid;
  gap: 20px;
}

@media (min-width: 1024px) {
  .ff-post-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.ff-featured-card {
  border: 1px solid var(--ff-border);
  background: #ffffff;
  padding: 32px;
}

.ff-featured-card h3 {
  margin-top: 16px;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.3;
}

.ff-featured-card p {
  margin-top: 16px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ff-text);
}

.ff-card-button.full {
  display: block;
  width: 100%;
  text-align: center;
  margin-top: 24px;
}
/* =========================
   CATEGORY PAGE
========================= */

.ff-category-hero {
  border-bottom: 1px solid var(--ff-border);
  background: #ffffff;
  padding: 64px 0;
}

.ff-category-hero-grid {
  display: grid;
  gap: 32px;
}

@media (min-width: 768px) {
  .ff-category-hero-grid {
    grid-template-columns: 0.7fr 0.3fr;
  }
}

.ff-category-hero h1 {
  margin-top: 16px;
  font-size: 52px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
}

.ff-category-hero p {
  max-width: 720px;
  margin-top: 24px;
  font-size: 18px;
  line-height: 1.7;
  color: var(--ff-text);
}

.ff-start-here-box {
  border: 1px solid var(--ff-border);
  background: var(--ff-paper);
  padding: 24px;
}

.ff-start-here-box ul {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.ff-start-here-box li {
  margin-top: 12px;
  font-size: 14px;
  font-weight: 800;
}

.ff-start-here-box li::before {
  content: "• ";
}

.ff-category-posts {
  background: var(--ff-cream);
  padding: 64px 0;
}

.ff-category-post-grid {
  display: grid;
  gap: 24px;
}

@media (min-width: 768px) {
  .ff-category-post-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1100px) {
  .ff-category-post-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.ff-category-post-card {
  border: 1px solid var(--ff-border);
  background: #ffffff;
  padding: 28px;
}

.ff-category-post-card h2 {
  margin-top: 18px;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.ff-category-post-card p {
  margin-top: 16px;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ff-text);
}
/* =========================
   ARTICLE PAGE
========================= */

.ff-article-page {
  background: var(--ff-cream);
  padding-bottom: 100px;
}

.ff-article-container {
  max-width: 760px;
  margin: 0 auto;
  padding: 56px 24px;
}

.ff-article-header {
  border-bottom: 1px solid var(--ff-border);
  padding-bottom: 40px;
}

.ff-article-category {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--ff-rust);
}

.ff-article-title {
  margin-top: 20px;
  font-size: 44px;
  font-weight: 900;
  line-height: 1.1;
}

.ff-article-excerpt {
  margin-top: 20px;
  font-size: 20px;
  line-height: 1.7;
  color: var(--ff-text);
}

.ff-article-meta {
  margin-top: 20px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--ff-muted);
  display: flex;
  gap: 8px;
}

.ff-article-content {
  margin-top: 40px;
  font-size: 19px;
  line-height: 1.8;
  color: #1f2933;
}

.ff-article-content h2 {
  margin-top: 48px;
  font-size: 28px;
  font-weight: 900;
}

.ff-article-content p {
  margin-top: 20px;
}

.ff-back-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  border-top: 1px solid var(--ff-border);
  background: rgba(244, 241, 234, 0.95);
  padding: 12px 24px;
}

.ff-back-button {
  border: 1px solid var(--ff-black);
  background: #ffffff;
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border-radius: 6px;
  cursor: pointer;
}

.ff-back-button:hover {
  background: var(--ff-black);
  color: #ffffff;
}
/* =========================
   HOMEPAGE
========================= */

.ff-home-hero {
  border-bottom: 1px solid var(--ff-border);
  background: var(--ff-cream);
  padding: 80px 0;
}

.ff-home-grid {
  display: grid;
  gap: 40px;
}

@media (min-width: 1024px) {
  .ff-home-grid {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

.ff-home-title {
  margin-top: 20px;
  font-size: 56px;
  font-weight: 900;
  line-height: 0.95;
}

.ff-home-sub {
  margin-top: 24px;
  font-size: 20px;
  line-height: 1.7;
  color: var(--ff-text);
}

.ff-home-buttons {
  margin-top: 28px;
  display: flex;
  gap: 16px;
}

.ff-btn-rust {
  background: var(--ff-rust);
  color: #fff;
  padding: 14px 22px;
  font-weight: 900;
  text-transform: uppercase;
}

.ff-btn-blue {
  background: var(--ff-blue);
  color: #fff;
  padding: 14px 22px;
  font-weight: 900;
  text-transform: uppercase;
}

.ff-home-right {
  background: #111827;
  color: #fff;
  padding: 40px 32px;

  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ff-tool-title {
  text-align: center;
  font-size: 22px;
  font-weight: 900;
  margin-bottom: 32px;
}

.ff-tool-card {
  display: block;
  margin-top: 18px;
  padding: 22px;
  font-weight: 900;
  text-align: center;
}

.ff-tool-card:first-of-type {
  margin-top: 0;
}

.ff-tool-title {
  text-align: center;
  font-size: 22px;
  font-weight: 900;
  margin-bottom: 20px;
}

.ff-tool-card {
  display: block;
  margin-top: 16px;
  padding: 20px;
  font-weight: 900;
  text-align: center;
}

.ff-tool-card span {
  display: block;
  margin-top: 8px;
  font-size: 14px;
}

.ff-tool-card.rust { background: var(--ff-rust); }
.ff-tool-card.blue { background: var(--ff-blue); }
.ff-tool-card.slate { background: var(--ff-slate); }
/* =========================
   HOMEPAGE SECTIONS
========================= */

.ff-home-section {
  padding: 72px 0;
  background: #ffffff;
  border-bottom: 1px solid var(--ff-border);
}

.ff-home-section-header {
  max-width: 720px;
}

.ff-home-section-header h2 {
  font-size: 36px;
  font-weight: 900;
}

.ff-home-section-header p {
  margin-top: 16px;
  font-size: 18px;
  line-height: 1.7;
  color: var(--ff-text);
}

.ff-home-cards {
  margin-top: 40px;
  display: grid;
  gap: 24px;
}

@media (min-width: 900px) {
  .ff-home-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

.ff-home-card {
  display: block;
  border: 1px solid var(--ff-border);
  padding: 28px;
  background: #ffffff;
  transition: transform 0.15s ease;
}

.ff-home-card:hover {
  transform: translateY(-4px);
}

.ff-home-card h3 {
  margin-top: 16px;
  font-size: 22px;
  font-weight: 900;
}

.ff-home-card p {
  margin-top: 16px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ff-text);
}
.ff-home-section-blue {
  background: #eaf3f6;
}
/* =========================
   HOMEPAGE GUIDE SECTIONS
========================= */

.ff-home-guides-section {
  border-bottom: 1px solid var(--ff-border);
  background: #ffffff;
  padding: 80px 0;
}

.ff-home-guides-header {
  margin-bottom: 48px;
}

.ff-section-kicker {
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.22em;
}

.ff-section-kicker.rust {
  color: var(--ff-rust);
}

.ff-home-guides-header h2 {
  margin-top: 12px;
  font-size: 44px;
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.ff-home-guides-header p {
  margin-top: 20px;
  max-width: 720px;
  font-size: 18px;
  line-height: 1.7;
  color: var(--ff-text);
}

.ff-guide-card-grid {
  display: grid;
  gap: 24px;
}

@media (min-width: 768px) {
  .ff-guide-card-grid.two {
    grid-template-columns: repeat(2, 1fr);
  }
}

.ff-guide-card {
  border: 2px solid var(--ff-black);
  padding: 32px;
}

.ff-guide-card.paper {
  background: var(--ff-paper);
}

.ff-guide-card h3 {
  margin-top: 24px;
  font-size: 30px;
  font-weight: 900;
}

.ff-guide-card p {
  margin-top: 16px;
  font-size: 18px;
  line-height: 1.7;
  color: var(--ff-text);
}
.ff-home-guides-section-blue {
  background: #eaf3f6;
}

.ff-section-kicker.blue {
  color: var(--ff-blue);
}

.ff-guide-card.white {
  background: #ffffff;
}
/* =========================
   PROBLEM-FIRST SECTION
========================= */

.ff-problem-section {
  border-bottom: 1px solid var(--ff-border);
  background: var(--ff-black);
  color: #ffffff;
  padding: 80px 0;
}

.ff-problem-grid {
  display: grid;
  gap: 40px;
}

@media (min-width: 1024px) {
  .ff-problem-grid {
    grid-template-columns: 0.38fr 0.62fr;
    align-items: start;
  }
}

.ff-section-kicker.light {
  color: #e4d8c3;
}

.ff-problem-intro h2 {
  margin-top: 12px;
  font-size: 44px;
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.ff-problem-intro p {
  margin-top: 20px;
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
}

.ff-diagnostic-grid {
  display: grid;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

@media (min-width: 768px) {
  .ff-diagnostic-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.ff-diagnostic-item {
  display: block;
  min-height: 180px;
  padding: 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.03);
}

.ff-diagnostic-number {
  margin-bottom: 20px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(255, 255, 255, 0.4);
}

.ff-diagnostic-title {
  font-size: 20px;
  font-weight: 900;
}

.ff-diagnostic-link {
  margin-top: 20px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #9dd9ea;
}
/* =========================
   PRODUCT SECTION
========================= */

.ff-product-section {
  border-top: 1px solid var(--ff-border);
  background: #ffffff;
  padding: 80px 0;
}
/* =========================
   HOMEPAGE POLISH PASS
========================= */

.ff-home-left,
.ff-home-right,
.ff-guide-card,
.ff-diagnostic-item,
.ff-home-card,
.ff-featured-card {
  box-shadow: 0 10px 24px rgba(17, 24, 39, 0.06);
}

.ff-home-left {
  border-top: 2px solid var(--ff-black);
  border-bottom: 2px solid var(--ff-black);
  border-left: 2px solid var(--ff-black);
  background: var(--ff-paper);
  padding: 48px;
}

.ff-home-right {
  border: 2px solid var(--ff-black);
  border-left: 4px solid var(--ff-border);
}

.ff-tool-card {
  min-height: 108px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ff-tool-card div {
  font-size: 30px;
  line-height: 1.1;
}

.ff-tool-card span {
  font-size: 20px;
  font-weight: 900;
}

.ff-home-title {
  letter-spacing: -0.045em;
}

.ff-home-buttons a,
.ff-card-button,
.ff-btn-rust,
.ff-btn-blue {
  transition: filter 0.15s ease, transform 0.15s ease;
}

.ff-home-buttons a:hover,
.ff-card-button:hover,
.ff-btn-rust:hover,
.ff-btn-blue:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
}

.ff-guide-card,
.ff-home-card {
  min-height: 260px;
}

.ff-guide-card h3,
.ff-home-card h3 {
  line-height: 1.15;
}

.ff-problem-section {
  padding: 88px 0;
}

.ff-product-section {
  background: var(--ff-cream);
}

@media (max-width: 900px) {
  .ff-home-left {
    border: 2px solid var(--ff-black);
    padding: 32px;
  }

  .ff-home-buttons {
    flex-direction: column;
  }

  .ff-home-buttons a {
    text-align: center;
  }

  .ff-home-title {
    font-size: 44px;
  }

  .ff-tool-card div {
    font-size: 24px;
  }

  .ff-tool-card span {
    font-size: 18px;
  }
}
.ff-home-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ff-tool-title {
  margin-bottom: 24px;
}

.ff-tool-card:first-of-type {
  margin-top: 0;
}
/* =========================
   GUIDE SALES PAGE
========================= */

.ff-guide-sales-page {
  background: var(--ff-cream);
}

/* HERO */

.ff-guide-sales-hero {
  padding: 80px 0;
  border-bottom: 1px solid var(--ff-border);
}

.ff-guide-sales-grid {
  display: grid;
  gap: 40px;
}

@media (min-width: 1024px) {
  .ff-guide-sales-grid {
    grid-template-columns: 0.65fr 0.35fr;
  }
}

.ff-guide-label {
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--ff-muted);
}

.ff-guide-sales-left h1 {
  margin-top: 16px;
  font-size: 48px;
  font-weight: 900;
  line-height: 1.05;
}

.ff-guide-description {
  margin-top: 20px;
  font-size: 20px;
  line-height: 1.7;
  color: var(--ff-text);
}

.ff-guide-kicker {
  margin-top: 20px;
  font-size: 14px;
  font-weight: 800;
  color: var(--ff-black);
}

/* RIGHT SIDEBAR */

.ff-guide-sales-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ff-guide-option-title {
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.ff-guide-option {
  border: 2px solid var(--ff-black);
  padding: 24px;
  background: #fff;
}

.ff-guide-option-primary {
  background: var(--ff-paper);
}

.ff-guide-option-label {
  font-size: 14px;
  font-weight: 900;
}

.ff-guide-price {
  margin: 16px 0;
  font-size: 36px;
  font-weight: 900;
}

.ff-guide-buy-button {
  display: block;
  text-align: center;
  background: var(--ff-black);
  color: #fff;
  padding: 14px;
  font-weight: 900;
}

.ff-guide-option-bundle {
  border-color: var(--ff-blue);
}

.ff-guide-bundle-title {
  font-size: 18px;
  font-weight: 900;
  margin-top: 8px;
}

.ff-guide-save {
  margin-top: 8px;
  font-size: 14px;
  font-weight: 900;
  color: var(--ff-blue);
}

/* INFO SECTIONS */

.ff-guide-info-section {
  padding: 80px 0;
}

.ff-guide-info-section.white {
  background: #fff;
}

.ff-guide-info-section.cream {
  background: var(--ff-cream);
}

.ff-guide-info-grid {
  display: grid;
  gap: 24px;
}

@media (min-width: 768px) {
  .ff-guide-info-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.ff-guide-info-card {
  border: 1px solid var(--ff-border);
  padding: 32px;
  background: #fff;
}

.ff-guide-info-card.tinted {
  background: var(--ff-paper);
}

.ff-guide-info-card h2 {
  margin-top: 16px;
  font-size: 24px;
  font-weight: 900;
}

.ff-guide-info-card ul {
  margin-top: 16px;
  padding-left: 18px;
}

.ff-guide-info-card li {
  margin-top: 10px;
  line-height: 1.6;
}

.ff-guide-faq-item {
  margin-top: 16px;
}

.ff-guide-faq-item strong {
  display: block;
  font-size: 16px;
}

.ff-guide-faq-item p {
  margin-top: 6px;
  color: var(--ff-text);
}
/* =========================
   GUIDE SALES PAGE
========================= */

.ff-guide-sales-page {
  background: var(--ff-cream);
}

/* HERO */

.ff-guide-sales-hero {
  padding: 80px 0;
  border-bottom: 1px solid var(--ff-border);
}

.ff-guide-sales-grid {
  display: grid;
  gap: 40px;
}

@media (min-width: 1024px) {
  .ff-guide-sales-grid {
    grid-template-columns: 0.65fr 0.35fr;
  }
}

.ff-guide-label {
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--ff-muted);
}

.ff-guide-sales-left h1 {
  margin-top: 16px;
  font-size: 48px;
  font-weight: 900;
  line-height: 1.05;
}

.ff-guide-description {
  margin-top: 20px;
  font-size: 20px;
  line-height: 1.7;
  color: var(--ff-text);
}

.ff-guide-kicker {
  margin-top: 20px;
  font-size: 14px;
  font-weight: 800;
  color: var(--ff-black);
}

/* RIGHT SIDEBAR */

.ff-guide-sales-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ff-guide-option-title {
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.ff-guide-option {
  border: 2px solid var(--ff-black);
  padding: 24px;
  background: #fff;
}

.ff-guide-option-primary {
  background: var(--ff-paper);
}

.ff-guide-option-label {
  font-size: 14px;
  font-weight: 900;
}

.ff-guide-price {
  margin: 16px 0;
  font-size: 36px;
  font-weight: 900;
}

.ff-guide-buy-button {
  display: block;
  text-align: center;
  background: var(--ff-black);
  color: #fff;
  padding: 14px;
  font-weight: 900;
}

.ff-guide-option-bundle {
  border-color: var(--ff-blue);
}

.ff-guide-bundle-title {
  font-size: 18px;
  font-weight: 900;
  margin-top: 8px;
}

.ff-guide-save {
  margin-top: 8px;
  font-size: 14px;
  font-weight: 900;
  color: var(--ff-blue);
}

/* INFO SECTIONS */

.ff-guide-info-section {
  padding: 80px 0;
}

.ff-guide-info-section.white {
  background: #fff;
}

.ff-guide-info-section.cream {
  background: var(--ff-cream);
}

.ff-guide-info-grid {
  display: grid;
  gap: 24px;
}

@media (min-width: 768px) {
  .ff-guide-info-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.ff-guide-info-card {
  border: 1px solid var(--ff-border);
  padding: 32px;
  background: #fff;
}

.ff-guide-info-card.tinted {
  background: var(--ff-paper);
}

.ff-guide-info-card h2 {
  margin-top: 16px;
  font-size: 24px;
  font-weight: 900;
}

.ff-guide-info-card ul {
  margin-top: 16px;
  padding-left: 18px;
}

.ff-guide-info-card li {
  margin-top: 10px;
  line-height: 1.6;
}

.ff-guide-faq-item {
  margin-top: 16px;
}

.ff-guide-faq-item strong {
  display: block;
  font-size: 16px;
}

.ff-guide-faq-item p {
  margin-top: 6px;
  color: var(--ff-text);
}
.ff-card-bar.ff-blue {
    background: #0f5f7a;
}
.ff-guide-price {
    font-size: 32px;
    font-weight: 700;
}

.ff-guide-price-meta {
    display: block;
    font-size: 14px;
    font-weight: 400;
    margin-top: 4px;
    color: #444;
}
.ff-guide-bundle-title {
    font-size: 32px;
    font-weight: 700;
}
.ff-guide-transition {
    padding: 40px 0;
}

.ff-guide-steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.ff-step strong {
    display: block;
    margin-bottom: 6px;
}
.ff-guides-hero {
  background: #f4f1ea;
  padding: 72px 24px 56px;
  border-bottom: 1px solid #d8d0c2;
}

.ff-guides-hero-inner {
  max-width: 1120px;
  margin: 0 auto;
}

.ff-guides-hero-copy {
  max-width: 760px;
}

.ff-kicker {
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #b93815;
  font-weight: 700;
  margin-bottom: 14px;
}

.ff-guides-hero h1 {
  font-size: clamp(2rem, 3.2vw, 3.2rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
  margin: 0 0 22px;
  color: #111;
}

.ff-guides-subtitle {
  font-size: 1rem;
  line-height: 1.7;
  color: #3a3a3a;
}
.ff-guides-grid-section {
  background: #fffaf0;
  padding: 64px 24px;
}

.ff-guides-grid-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.ff-guide-card {
  background: #f4f1ea;
  border: 1px solid #d8d0c2;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  min-height: 330px;
}

.ff-guide-label {
  color: #b93815;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin: 0 0 14px;
}

.ff-guide-card h2 {
  font-size: 1.35rem;
  line-height: 1.15;
  margin: 0 0 16px;
  color: #06172b;
}

.ff-guide-card p:not(.ff-guide-label) {
  font-size: 0.96rem;
  line-height: 1.6;
  color: #333;
  margin: 0 0 24px;
}

.ff-guide-button {
  margin-top: auto;
  display: inline-block;
  background: #06172b;
  color: #fff;
  text-decoration: none;
  text-align: center;
  padding: 14px 18px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.82rem;
}

.ff-guide-button:hover {
  background: #b93815;
  color: #fff;
}

@media (max-width: 1050px) {
  .ff-guides-grid-inner {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .ff-guides-grid-inner {
    grid-template-columns: 1fr;
  }
}
.ff-cart-link {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #06172b;
  text-decoration: none;
  margin-right: 18px;
}

.ff-cart-link:hover {
  color: #b93815;
}
.ff-bundle-section {
  background: #06172b;
  padding: 72px 24px;
}

.ff-bundle-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 0.8fr;
  gap: 44px;
  align-items: center;
}

.ff-bundle-kicker,
.ff-bundle-card-label {
  color: #f4f1ea;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin: 0 0 14px;
}

.ff-bundle-copy h2 {
  color: #fffaf0;
  font-size: clamp(2rem, 3vw, 3.3rem);
  line-height: 1;
  letter-spacing: -0.04em;
  margin: 0 0 22px;
}

.ff-bundle-copy p {
  color: #e7dfd1;
  font-size: 1rem;
  line-height: 1.65;
  max-width: 680px;
  margin: 0 0 24px;
}

.ff-bundle-copy ul {
  margin: 0;
  padding-left: 20px;
  color: #fffaf0;
}

.ff-bundle-copy li {
  margin-bottom: 10px;
  line-height: 1.5;
}

.ff-bundle-card {
  background: #fffaf0;
  border: 1px solid #d8d0c2;
  padding: 30px 28px;
}

.ff-bundle-card-label {
  color: #b93815;
}

.ff-bundle-price {
  font-size: 3.4rem;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.05em;
  color: #06172b;
  margin-bottom: 10px;
}

.ff-bundle-savings {
  color: #333;
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0 0 26px;
}

.ff-bundle-button {
  display: block;
  background: #b93815;
  color: #fff;
  text-align: center;
  text-decoration: none;
  padding: 15px 18px;
  font-size: 0.84rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.ff-bundle-button:hover {
  background: #06172b;
  color: #fff;
}

@media (max-width: 800px) {
  .ff-bundle-inner {
    grid-template-columns: 1fr;
  }
}
.ff-trust-section {
  background: #f4f1ea;
  padding: 34px 24px;
  border-top: 1px solid #d8d0c2;
}

.ff-trust-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 28px;
}

.ff-trust-inner p {
  margin: 0;
  color: #222;
  font-size: 0.98rem;
  line-height: 1.6;
  font-weight: 700;
}

@media (max-width: 700px) {
  .ff-trust-inner {
    grid-template-columns: 1fr;
  }
}
.ff-view-cart {
  margin-top: 10px;
  font-size: 0.8rem;
  text-align: center;
}

.ff-view-cart a {
  text-decoration: none;
  color: #06172b;
  font-weight: 700;
}

.ff-view-cart a:hover {
  color: #b93815;
}