@charset "UTF-8";
/* ============================================================
       CSS RESET & ROOT VARIABLES
    ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --cream: #F5F0E8;
  --cream-light: #FDFAF5;
  --slate: #1C2B3A;
  --slate-mid: #243447;
  --rust: #B84A2E;
  --rust-light: #D4603E;
  --sand: #E8DFC8;
  --border: #D4C9B0;
  --muted: #6B7A87;
  --white: #FDFAF5;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --header-h: 72px;
  --g-max-w: 1600px;
  --radius: 4px;
  --transition: 0.2s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: white;
  color: var(--slate);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.page-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.container {
  margin: 0 auto;
  max-width: var(--g-max-w);
  padding: 0 1rem;
  width: 100%;
}

/* =========================================================
   Roofing Resource Guide — Fixed Authority Header
   ========================================================= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  transition: background 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.site-header .header-inner {
  margin: 0 auto;
  max-width: var(--g-max-w);
  min-height: 88px;
  padding: 0 1rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.site-header {
  /* ========================================
     Logo Area
     ======================================== */
}
.site-header .site-brand {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  flex-shrink: 0;
}
.site-header .site-brand .logo-mark {
  width: 58px;
  height: 58px;
  overflow: hidden;
  flex-shrink: 0;
}
.site-header .site-brand .logo-mark img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}
.site-header .site-brand .brand-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.site-header .site-brand .brand-title {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
  color: #233d60;
}
.site-header .site-brand .brand-tagline {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #ea580c;
}
.site-header {
  /* ========================================
     Desktop Navigation
     ======================================== */
}
.site-header .site-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.site-header .site-nav a {
  position: relative;
  font-size: 0.96rem;
  font-weight: 500;
  color: #1e293b;
  text-decoration: none;
  transition: color 0.25s ease;
}
.site-header .site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  background: #ea580c;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}
.site-header .site-nav a:hover {
  color: #ea580c;
}
.site-header .site-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}
.site-header {
  /* ========================================
     Mobile Toggle
     ======================================== */
}
.site-header .menu-toggle {
  width: 52px;
  height: 52px;
  border: 0;
  background: transparent;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
}
.site-header .menu-toggle span {
  position: absolute;
  width: 24px;
  height: 2px;
  background: #0f172a;
  border-radius: 999px;
  transition: all 0.3s ease;
}
.site-header .menu-toggle span:nth-child(1) {
  transform: translateY(-7px);
}
.site-header .menu-toggle span:nth-child(2) {
  opacity: 1;
}
.site-header .menu-toggle span:nth-child(3) {
  transform: translateY(7px);
}
.site-header .menu-toggle.is-open span:nth-child(1) {
  transform: rotate(45deg);
}
.site-header .menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}
.site-header .menu-toggle.is-open span:nth-child(3) {
  transform: rotate(-45deg);
}
.site-header {
  /* ========================================
     Mobile Navigation
     ======================================== */
}
.site-header .mobile-nav {
  position: fixed;
  top: 88px;
  left: 0;
  width: 100%;
  height: calc(100vh - 88px);
  background: #ffffff;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transform: translateX(100%);
  transition: transform 0.35s ease;
}
.site-header .mobile-nav a {
  font-size: 1.1rem;
  font-weight: 500;
  color: #0f172a;
  text-decoration: none;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}
.site-header .mobile-nav.is-open {
  transform: translateX(0);
}

/* =========================================================
   Sticky Shadow on Scroll
   ========================================================= */
.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

/* =========================================================
   Prevent Content Behind Fixed Header
   ========================================================= */
body {
  padding-top: 88px;
}

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1100px) {
  .site-header .site-nav {
    display: none;
  }
  .site-header .menu-toggle {
    display: flex;
  }
}
@media (max-width: 768px) {
  .site-header .header-inner {
    justify-content: space-between;
    -moz-column-gap: 5px;
         column-gap: 5px;
    min-height: 80px;
  }
  .site-header .site-brand {
    gap: 12px;
  }
  .site-header .site-brand .logo-mark {
    width: 50px;
    height: 50px;
  }
  .site-header .site-brand .brand-title {
    font-size: 1.2rem;
  }
  .site-header .site-brand .brand-tagline {
    font-size: 0.72rem;
  }
  .site-header .mobile-nav {
    top: 80px;
    height: calc(100vh - 80px);
  }
  body {
    padding-top: 80px;
  }
}
.site-footer {
  background: #0f172a;
  color: #e2e8f0;
  padding: 72px 0 28px;
}
.site-footer .footer-inner {
  width: min(1440px, 100% - 40px);
  margin: 0 auto;
}
.site-footer .footer-main {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 56px;
}
.site-footer .footer-brand {
  max-width: 420px;
}
.site-footer .footer-brand .footer-logo {
  display: inline-flex;
  width: 180px;
  margin-bottom: 24px;
}
.site-footer .footer-brand .footer-logo img {
  width: 100%;
  height: auto;
  display: block;
}
.site-footer .footer-brand p {
  font-size: 0.98rem;
  line-height: 1.7;
  color: #cbd5e1;
  margin: 0 0 22px;
}
.site-footer .footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.site-footer .footer-badges span {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fed7aa;
  background: rgba(234, 88, 12, 0.14);
  border: 1px solid rgba(251, 146, 60, 0.28);
  border-radius: 999px;
  padding: 7px 12px;
}
.site-footer .footer-col h4 {
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #ffffff;
  margin: 0 0 22px;
}
.site-footer .footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 13px;
}
.site-footer .footer-col a {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 0.95rem;
  line-height: 1.4;
  transition: color 0.25s ease;
}
.site-footer .footer-col a:hover {
  color: #fb923c;
}
.site-footer .footer-note {
  margin-top: 56px;
  padding: 22px 0;
  border-top: 1px solid rgba(226, 232, 240, 0.12);
  border-bottom: 1px solid rgba(226, 232, 240, 0.12);
}
.site-footer .footer-note p {
  margin: 0;
  max-width: 980px;
  font-size: 0.9rem;
  line-height: 1.7;
  color: #94a3b8;
}
.site-footer .footer-bottom {
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.site-footer .footer-bottom p {
  margin: 0;
  font-size: 0.88rem;
  color: #94a3b8;
}
.site-footer .footer-bottom nav {
  display: flex;
  gap: 22px;
}
.site-footer .footer-bottom nav a {
  font-size: 0.88rem;
  color: #cbd5e1;
  text-decoration: none;
}
.site-footer .footer-bottom nav a:hover {
  color: #fb923c;
}

@media (max-width: 1100px) {
  .site-footer .footer-main {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .site-footer {
    padding: 56px 0 26px;
  }
  .site-footer .footer-inner {
    width: calc(100% - 28px);
  }
  .site-footer .footer-main {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .site-footer .footer-brand {
    max-width: none;
  }
  .site-footer .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}
.section-hero {
  position: relative;
  padding: 110px 0 90px;
  background: linear-gradient(to bottom, #fff7ed 0%, #ffffff 100%);
  overflow: hidden;
}
.section-hero .section-hero-wrapper {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 80px;
}
.section-hero {
  /* ========================================
     Hero Content
     ======================================== */
}
.section-hero .section-hero-content {
  position: relative;
  z-index: 2;
}
.section-hero .hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #c2410c;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(251, 146, 60, 0.12);
  border: 1px solid rgba(251, 146, 60, 0.18);
  margin-bottom: 28px;
}
@media (max-width: 424.98px) {
  .section-hero .hero-eyebrow {
    font-size: 10px;
  }
}
.section-hero h1 {
  margin: 0 0 28px;
  font-family: "Playfair Display", serif;
  font-size: clamp(3rem, 5vw, 5.2rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  color: #0f172a;
  max-width: 780px;
}
.section-hero h1 span {
  display: block;
  color: #ea580c;
}
@media (max-width: 424.98px) {
  .section-hero h1 {
    font-size: 30px;
  }
}
.section-hero .hero-description {
  max-width: 720px;
  font-size: 1.12rem;
  line-height: 1.9;
  color: #475569;
  margin: 0 0 42px;
}
.section-hero {
  /* ========================================
     Topic Cards
     ======================================== */
}
.section-hero .hero-topics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 48px;
}
.section-hero .hero-topic-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 24px;
  background: #ffffff;
  border-radius: 24px;
  border: 1px solid rgba(15, 23, 42, 0.06);
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.section-hero .hero-topic-card:hover {
  transform: translateY(-4px);
  border-color: rgba(234, 88, 12, 0.18);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}
.section-hero .hero-topic-card .topic-title {
  font-size: 1rem;
  font-weight: 700;
  color: #0f172a;
}
.section-hero .hero-topic-card .topic-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #64748b;
}
.section-hero {
  /* ========================================
     Trust Row
     ======================================== */
}
.section-hero .hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}
.section-hero .trust-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.section-hero .trust-number {
  font-size: 1.2rem;
  font-weight: 700;
  color: #ea580c;
}
.section-hero .trust-label {
  font-size: 0.9rem;
  color: #64748b;
}
.section-hero {
  /* ========================================
     Hero Image
     ======================================== */
}
.section-hero .section-hero-image {
  position: relative;
}
.section-hero .hero-image-wrapper {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.12);
}
.section-hero .hero-image-wrapper img {
  width: 100%;
  height: 720px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.section-hero .hero-image-badge {
  position: absolute;
  left: 28px;
  bottom: 28px;
  padding: 14px 20px;
  background: rgba(15, 23, 42, 0.82);
  backdrop-filter: blur(10px);
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #ffffff;
}

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1200px) {
  .section-hero .section-hero-wrapper {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .section-hero .section-hero-image {
    order: -1;
  }
  .section-hero .hero-image-wrapper img {
    height: 540px;
  }
}
@media (max-width: 768px) {
  .section-hero {
    padding: 80px 0 70px;
  }
  .section-hero .hero-topics {
    grid-template-columns: 1fr;
  }
  .section-hero .hero-trust {
    gap: 28px;
  }
  .section-hero .hero-image-wrapper {
    border-radius: 24px;
  }
  .section-hero .hero-image-wrapper img {
    height: 420px;
  }
  .section-hero .hero-description {
    font-size: 1rem;
    line-height: 1.8;
  }
}
.ai-summary {
  padding: 34px 0;
  background: #ffffff;
}
.ai-summary .ai-summary-wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin: 0 auto;
  max-width: 940px;
  padding: 34px 38px;
  background: #0f172a;
  border-radius: 28px;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
}
.ai-summary .ai-summary-label {
  align-self: start;
  display: inline-flex;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fed7aa;
  background: rgba(251, 146, 60, 0.14);
  border: 1px solid rgba(251, 146, 60, 0.25);
  border-radius: 999px;
  padding: 9px 14px;
}
.ai-summary .ai-summary-content h2 {
  margin: 0 0 16px;
  font-family: "Playfair Display", serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: #ffffff;
}
.ai-summary .ai-summary-content p {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.85;
  color: #cbd5e1;
}
.ai-summary .ai-summary-content p + p {
  margin-top: 14px;
}
.ai-summary .ai-summary-content .ai-summary-answer {
  font-size: 1.12rem;
  color: #ffffff;
}

@media (max-width: 900px) {
  .ai-summary .ai-summary-wrapper {
    gap: 24px;
    padding: 30px 24px;
  }
}
@media (max-width: 768px) {
  .ai-summary {
    padding: 26px 0;
  }
  .ai-summary .ai-summary-wrapper {
    border-radius: 22px;
  }
}
.section-pillars {
  padding: 110px 0;
  background: #f8fafc;
  /* ========================================
     Section Heading
     ======================================== */
}
.section-pillars .section-heading {
  max-width: 860px;
  margin-bottom: 64px;
}
.section-pillars .section-heading .section-eyebrow {
  display: inline-flex;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #c2410c;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(251, 146, 60, 0.12);
  border: 1px solid rgba(251, 146, 60, 0.18);
  margin-bottom: 22px;
}
.section-pillars .section-heading h2 {
  margin: 0 0 22px;
  font-family: "Playfair Display", serif;
  font-size: clamp(2.4rem, 4vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: #0f172a;
}
.section-pillars .section-heading p {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.9;
  color: #475569;
  max-width: 760px;
}
.section-pillars {
  /* ========================================
     Grid
     ======================================== */
}
.section-pillars .pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 26px;
}
.section-pillars {
  /* ========================================
     Card
     ======================================== */
}
.section-pillars .pillar-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 34px 30px;
  background: #ffffff;
  border-radius: 30px;
  text-decoration: none;
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.section-pillars .pillar-card:hover {
  transform: translateY(-6px);
  border-color: rgba(234, 88, 12, 0.16);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
}
.section-pillars .pillar-card:hover .pillar-link {
  color: #ea580c;
}
.section-pillars .pillar-card h3 {
  margin: 0 0 18px;
  font-size: 1.34rem;
  font-weight: 700;
  line-height: 1.2;
  color: #0f172a;
}
.section-pillars .pillar-card p {
  margin: 0 0 28px;
  font-size: 0.98rem;
  line-height: 1.8;
  color: #64748b;
  flex-grow: 1;
}
.section-pillars {
  /* ========================================
     Icon
     ======================================== */
}
.section-pillars .pillar-icon {
  width: 62px;
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 26px;
  border-radius: 18px;
  background: linear-gradient(135deg, #ea580c, #fb923c);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #ffffff;
  box-shadow: 0 14px 30px rgba(234, 88, 12, 0.18);
}
.section-pillars {
  /* ========================================
     Link
     ======================================== */
}
.section-pillars .pillar-link {
  font-size: 0.92rem;
  font-weight: 700;
  color: #0f172a;
  transition: color 0.25s ease;
}

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1200px) {
  .section-pillars .pillars-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 768px) {
  .section-pillars {
    padding: 80px 0;
  }
  .section-pillars .section-heading {
    margin-bottom: 42px;
  }
  .section-pillars .section-heading p {
    font-size: 1rem;
    line-height: 1.8;
  }
  .section-pillars .pillars-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .section-pillars .pillar-card {
    padding: 28px 24px;
    border-radius: 24px;
  }
}
.section-phoenix-intro {
  padding: 110px 0;
  background: #ffffff;
}
.section-phoenix-intro .phoenix-intro-wrapper {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 70px;
  align-items: center;
}
.section-phoenix-intro .section-eyebrow {
  display: inline-flex;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #c2410c;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(251, 146, 60, 0.12);
  border: 1px solid rgba(251, 146, 60, 0.18);
  margin-bottom: 24px;
}
.section-phoenix-intro h2 {
  margin: 0 0 24px;
  font-family: "Playfair Display", serif;
  font-size: clamp(2.4rem, 4vw, 4.2rem);
  line-height: 1.06;
  letter-spacing: -0.04em;
  color: #0f172a;
  max-width: 760px;
}
.section-phoenix-intro p {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.9;
  color: #475569;
  max-width: 760px;
}
.section-phoenix-intro p + p {
  margin-top: 18px;
}
.section-phoenix-intro .section-lead {
  font-size: 1.14rem;
  color: #1e293b;
}
.section-phoenix-intro .phoenix-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 36px;
}
.section-phoenix-intro .phoenix-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}
.section-phoenix-intro .phoenix-actions a:hover {
  transform: translateY(-2px);
}
.section-phoenix-intro .phoenix-actions .primary-link {
  background: #ea580c;
  color: #ffffff;
  border: 1px solid #ea580c;
}
.section-phoenix-intro .phoenix-actions .primary-link:hover {
  background: #c2410c;
  border-color: #c2410c;
}
.section-phoenix-intro .phoenix-actions .secondary-link {
  background: #ffffff;
  color: #0f172a;
  border: 1px solid rgba(15, 23, 42, 0.14);
}
.section-phoenix-intro .phoenix-actions .secondary-link:hover {
  color: #ea580c;
  border-color: rgba(234, 88, 12, 0.35);
}
.section-phoenix-intro .phoenix-intro-panel {
  position: relative;
  padding: 42px;
  border-radius: 32px;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
}
.section-phoenix-intro .phoenix-intro-panel h3 {
  margin: 0 0 26px;
  font-size: 1.5rem;
  line-height: 1.25;
  color: #ffffff;
}
.section-phoenix-intro .phoenix-intro-panel ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 20px;
}
.section-phoenix-intro .phoenix-intro-panel li {
  position: relative;
  padding-left: 28px;
  font-size: 0.98rem;
  line-height: 1.75;
  color: #cbd5e1;
}
.section-phoenix-intro .phoenix-intro-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #fb923c;
}
.section-phoenix-intro .phoenix-intro-panel li strong {
  color: #ffffff;
}

@media (max-width: 1024px) {
  .section-phoenix-intro .phoenix-intro-wrapper {
    grid-template-columns: 1fr;
    gap: 46px;
  }
}
@media (max-width: 768px) {
  .section-phoenix-intro {
    padding: 80px 0;
  }
  .section-phoenix-intro .phoenix-intro-panel {
    padding: 30px 24px;
    border-radius: 24px;
  }
  .section-phoenix-intro .phoenix-actions a {
    width: 100%;
  }
}
.section-featured-guides {
  padding: 110px 0;
  background: #f8fafc;
}
.section-featured-guides .section-heading {
  max-width: 860px;
  margin-bottom: 64px;
}
.section-featured-guides .section-eyebrow {
  display: inline-flex;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #c2410c;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(251, 146, 60, 0.12);
  border: 1px solid rgba(251, 146, 60, 0.18);
  margin-bottom: 22px;
}
.section-featured-guides h2 {
  margin: 0 0 22px;
  font-family: "Playfair Display", serif;
  font-size: clamp(2.4rem, 4vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: #0f172a;
}
.section-featured-guides .section-heading p {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.9;
  color: #475569;
  max-width: 780px;
}
.section-featured-guides .featured-guides-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 26px;
}
.section-featured-guides .featured-guide-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 360px;
  padding: 32px 30px;
  background: #ffffff;
  border-radius: 30px;
  border: 1px solid rgba(15, 23, 42, 0.06);
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.section-featured-guides .featured-guide-card:hover {
  transform: translateY(-6px);
  border-color: rgba(234, 88, 12, 0.18);
  box-shadow: 0 22px 55px rgba(15, 23, 42, 0.09);
}
.section-featured-guides .featured-guide-card:hover .guide-link {
  color: #ea580c;
}
.section-featured-guides .featured-guide-card h3 {
  margin: 0 0 18px;
  font-size: 1.45rem;
  line-height: 1.22;
  color: #0f172a;
}
.section-featured-guides .featured-guide-card p {
  margin: 0 0 28px;
  font-size: 0.98rem;
  line-height: 1.8;
  color: #64748b;
  flex-grow: 1;
}
.section-featured-guides .featured-guide-large {
  grid-column: span 2;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}
.section-featured-guides .featured-guide-large h3,
.section-featured-guides .featured-guide-large p,
.section-featured-guides .featured-guide-large .guide-link {
  color: #ffffff;
}
.section-featured-guides .featured-guide-large p {
  color: #cbd5e1;
  max-width: 620px;
}
.section-featured-guides .featured-guide-large .guide-meta span {
  color: #fed7aa;
  background: rgba(251, 146, 60, 0.14);
  border-color: rgba(251, 146, 60, 0.24);
}
.section-featured-guides .guide-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}
.section-featured-guides .guide-meta span {
  display: inline-flex;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #c2410c;
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(251, 146, 60, 0.1);
  border: 1px solid rgba(251, 146, 60, 0.18);
}
.section-featured-guides .guide-link {
  font-size: 0.92rem;
  font-weight: 700;
  color: #0f172a;
  transition: color 0.25s ease;
}

@media (max-width: 1200px) {
  .section-featured-guides .featured-guides-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 768px) {
  .section-featured-guides {
    padding: 80px 0;
  }
  .section-featured-guides .section-heading {
    margin-bottom: 42px;
  }
  .section-featured-guides .section-heading p {
    font-size: 1rem;
    line-height: 1.8;
  }
  .section-featured-guides .featured-guides-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .section-featured-guides .featured-guide-large {
    grid-column: span 1;
  }
  .section-featured-guides .featured-guide-card {
    min-height: auto;
    padding: 28px 24px;
    border-radius: 24px;
  }
}
.section-use-guide {
  padding: 110px 0;
  background: #ffffff;
}
.section-use-guide .use-guide-wrapper {
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: 72px;
  align-items: start;
}
.section-use-guide .use-guide-content {
  position: sticky;
  top: 120px;
}
.section-use-guide .section-eyebrow {
  display: inline-flex;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #c2410c;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(251, 146, 60, 0.12);
  border: 1px solid rgba(251, 146, 60, 0.18);
  margin-bottom: 24px;
}
.section-use-guide h2 {
  margin: 0 0 24px;
  font-family: "Playfair Display", serif;
  font-size: clamp(2.4rem, 4vw, 4rem);
  line-height: 1.06;
  letter-spacing: -0.04em;
  color: #0f172a;
}
.section-use-guide .use-guide-content p {
  margin: 0;
  max-width: 620px;
  font-size: 1.06rem;
  line-height: 1.9;
  color: #475569;
}
.section-use-guide .use-guide-steps {
  display: grid;
  gap: 22px;
}
.section-use-guide .use-step {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 24px;
  padding: 30px;
  background: #f8fafc;
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 28px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.section-use-guide .use-step:hover {
  transform: translateY(-4px);
  border-color: rgba(234, 88, 12, 0.16);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.07);
}
.section-use-guide .use-step h3 {
  margin: 0 0 10px;
  font-size: 1.24rem;
  line-height: 1.25;
  color: #0f172a;
}
.section-use-guide .use-step p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.8;
  color: #64748b;
}
.section-use-guide .step-number {
  width: 62px;
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: #0f172a;
  color: #fed7aa;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

@media (max-width: 1024px) {
  .section-use-guide .use-guide-wrapper {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .section-use-guide .use-guide-content {
    position: static;
  }
}
@media (max-width: 768px) {
  .section-use-guide {
    padding: 80px 0;
  }
  .section-use-guide .use-step {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 26px 22px;
    border-radius: 24px;
  }
}
.section-editorial-standards {
  padding: 110px 0;
  background: linear-gradient(to bottom, #fff7ed 0%, #ffffff 100%);
}
.section-editorial-standards .editorial-wrapper {
  position: relative;
  padding: 70px;
  border-radius: 40px;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.12);
}
.section-editorial-standards .section-eyebrow {
  display: inline-flex;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fed7aa;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(251, 146, 60, 0.12);
  border: 1px solid rgba(251, 146, 60, 0.18);
  margin-bottom: 24px;
}
.section-editorial-standards .editorial-content {
  max-width: 920px;
  margin-bottom: 54px;
}
.section-editorial-standards .editorial-content h2 {
  margin: 0 0 24px;
  font-family: "Playfair Display", serif;
  font-size: clamp(2.5rem, 4vw, 4.2rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: #ffffff;
}
.section-editorial-standards .editorial-content p {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.9;
  color: #cbd5e1;
  max-width: 860px;
}
.section-editorial-standards .editorial-content p + p {
  margin-top: 16px;
}
.section-editorial-standards .editorial-content .editorial-lead {
  font-size: 1.12rem;
  color: #ffffff;
}
.section-editorial-standards {
  /* ========================================
     Cards
     ======================================== */
}
.section-editorial-standards .editorial-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 54px;
}
.section-editorial-standards .editorial-card {
  padding: 32px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 28px;
  backdrop-filter: blur(10px);
}
.section-editorial-standards .editorial-card h3 {
  margin: 0 0 16px;
  font-size: 1.2rem;
  line-height: 1.3;
  color: #ffffff;
}
.section-editorial-standards .editorial-card p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.8;
  color: #cbd5e1;
}
.section-editorial-standards {
  /* ========================================
     Sources
     ======================================== */
}
.section-editorial-standards .editorial-sources h3 {
  margin: 0 0 24px;
  font-size: 1.3rem;
  color: #ffffff;
}
.section-editorial-standards .sources-list {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.section-editorial-standards .sources-list span {
  display: inline-flex;
  padding: 12px 16px;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #ffffff;
  background: rgba(251, 146, 60, 0.14);
  border: 1px solid rgba(251, 146, 60, 0.2);
}

@media (max-width: 1024px) {
  .section-editorial-standards .editorial-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .section-editorial-standards {
    padding: 80px 0;
  }
  .section-editorial-standards .editorial-wrapper {
    padding: 34px 24px;
    border-radius: 28px;
  }
  .section-editorial-standards .editorial-card {
    padding: 24px;
    border-radius: 22px;
  }
  .section-editorial-standards .sources-list {
    gap: 10px;
  }
}
.section-faq {
  padding: 110px 0;
  background: #f8fafc;
}
.section-faq .faq-wrapper {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: 70px;
  align-items: start;
}
.section-faq .faq-heading {
  position: sticky;
  top: 120px;
}
.section-faq .section-eyebrow {
  display: inline-flex;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #c2410c;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(251, 146, 60, 0.12);
  border: 1px solid rgba(251, 146, 60, 0.18);
  margin-bottom: 24px;
}
.section-faq h2 {
  margin: 0 0 24px;
  font-family: "Playfair Display", serif;
  font-size: clamp(2.4rem, 4vw, 4rem);
  line-height: 1.06;
  letter-spacing: -0.04em;
  color: #0f172a;
}
.section-faq .faq-heading p {
  margin: 0;
  max-width: 560px;
  font-size: 1.04rem;
  line-height: 1.9;
  color: #475569;
}
.section-faq .faq-list {
  display: grid;
  gap: 16px;
}
.section-faq .faq-item {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
}
.section-faq .faq-question {
  width: 100%;
  border: 0;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 28px;
  text-align: left;
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.35;
  color: #0f172a;
}
.section-faq .faq-icon {
  position: relative;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}
.section-faq .faq-icon::before, .section-faq .faq-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 2px;
  background: #ea580c;
  border-radius: 999px;
  transform: translate(-50%, -50%);
  transition: transform 0.25s ease;
}
.section-faq .faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.section-faq .faq-question[aria-expanded=true] .faq-icon::after {
  transform: translate(-50%, -50%) rotate(0deg);
}
.section-faq .faq-answer {
  display: none;
  padding: 0 28px 26px;
}
.section-faq .faq-answer p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.8;
  color: #64748b;
}
.section-faq .faq-item.is-open .faq-answer {
  display: block;
}

@media (max-width: 1024px) {
  .section-faq .faq-wrapper {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .section-faq .faq-heading {
    position: static;
  }
}
@media (max-width: 768px) {
  .section-faq {
    padding: 80px 0;
  }
  .section-faq .faq-question {
    padding: 22px 22px;
    font-size: 1rem;
  }
  .section-faq .faq-answer {
    padding: 0 22px 24px;
  }
}