/*
Theme Name: Coast Resolve Home
Theme URI: https://www.coastrealtysolutions.net
Author: Converted from Base44 source
Description: A native WordPress theme converted from the Base44 Coast Realty Solutions foreclosure resolution landing page.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: coast-resolve
Tags: one-page, custom-logo, custom-menu, landing-page, responsive-layout
*/

:root {
  --cr-bg: #0e0d0a;
  --cr-panel: #141410;
  --cr-card: #1e1c18;
  --cr-card-hover: #212118;
  --cr-gold: #c9a96e;
  --cr-gold-light: #e8cc8c;
  --cr-cream: #f1e4d1;
  --cr-copy: #ede8e0;
  --cr-black: #141410;
  --cr-ink: #1a1208;
  --cr-border: rgba(255, 255, 255, 0.10);
  --cr-border-soft: rgba(255, 255, 255, 0.08);
  --cr-gold-border: rgba(201, 169, 110, 0.20);
  --cr-font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --cr-font-body: 'Plus Jakarta Sans', Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --wp--style--global--content-size: 1280px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cr-bg);
  color: var(--cr-copy);
  font-family: var(--cr-font-body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.coast-resolve-theme {
  overflow-x: hidden;
}

img,
svg,
video {
  max-width: 100%;
  height: auto;
}

img {
  display: block;
}

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

a:hover {
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

::selection {
  background: rgba(201, 169, 110, 0.35);
  color: #fff;
}

::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: var(--cr-bg);
}

::-webkit-scrollbar-thumb {
  background: rgba(201, 169, 110, 0.35);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(201, 169, 110, 0.65);
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -100px;
  z-index: 100000;
  padding: 12px 16px;
  background: var(--cr-gold);
  color: var(--cr-ink);
  font-weight: 800;
  border-radius: 2px;
}

.skip-link:focus {
  top: 16px;
}

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

@media (min-width: 1024px) {
  .cr-container {
    padding-left: 32px;
    padding-right: 32px;
  }
}

.cr-icon {
  width: 24px;
  height: 24px;
  display: inline-block;
  flex: 0 0 auto;
  vertical-align: middle;
}

.cr-icon--sm {
  width: 16px;
  height: 16px;
}

.cr-icon--md {
  width: 20px;
  height: 20px;
}

.cr-icon--lg {
  width: 32px;
  height: 32px;
}

.cr-icon--xl {
  width: 40px;
  height: 40px;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  transition: background-color 0.45s ease, border-color 0.45s ease, backdrop-filter 0.45s ease, box-shadow 0.45s ease;
}

.admin-bar .site-header {
  top: 32px;
}

.site-header.is-scrolled,
body:not(.home) .site-header {
  background: rgba(20, 20, 16, 0.95);
  border-bottom: 1px solid rgba(201, 169, 110, 0.15);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.18);
}

.header-inner {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.site-logo img {
  width: auto;
  max-width: 260px;
  max-height: 48px;
  object-fit: contain;
}

.logo-text-fallback {
  color: #fff;
  font-family: var(--cr-font-heading);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.primary-navigation {
  display: none;
}

.nav-links,
.mobile-nav-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-links {
  align-items: center;
  gap: 28px;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.60);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  transition: color 0.25s ease;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a:focus {
  color: #fff;
}

.header-actions {
  display: none;
  align-items: center;
  gap: 16px;
}

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--cr-gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.05em;
  transition: color 0.25s ease;
  white-space: nowrap;
}

.header-phone:hover,
.header-phone:focus {
  color: var(--cr-gold-light);
}

.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: rgba(255, 255, 255, 0.82);
  background: transparent;
  border: 0;
  padding: 0;
}

.menu-toggle .icon-close {
  display: none;
}

.menu-toggle[aria-expanded="true"] .icon-menu {
  display: none;
}

.menu-toggle[aria-expanded="true"] .icon-close {
  display: inline-block;
}

.mobile-panel {
  display: none;
  background: rgba(20, 20, 16, 0.98);
  border-top: 1px solid rgba(201, 169, 110, 0.15);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.24);
}

.mobile-panel.is-open {
  display: block;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 16px 24px;
}

.mobile-nav-links a {
  display: flex;
  align-items: center;
  min-height: 48px;
  color: rgba(255, 255, 255, 0.60);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: color 0.25s ease;
}

.mobile-nav-links li:last-child a,
.mobile-nav-links a:last-child {
  border-bottom: 0;
}

.mobile-nav-links a:hover,
.mobile-nav-links a:focus {
  color: #fff;
}

.mobile-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 48px;
  color: var(--cr-gold);
  font-weight: 800;
  padding: 0 24px 16px;
}

@media (min-width: 1024px) {
  .header-inner {
    min-height: 80px;
  }

  .site-logo img {
    max-height: 52px;
  }

  .primary-navigation,
  .nav-links,
  .header-actions {
    display: flex;
  }

  .menu-toggle,
  .mobile-panel {
    display: none !important;
  }
}

@media (max-width: 782px) {
  .admin-bar .site-header {
    top: 46px;
  }
}

@media (max-width: 600px) {
  .admin-bar .site-header {
    top: 0;
  }
}

/* Common sections */
.cr-section {
  position: relative;
  padding: 96px 0;
}

@media (min-width: 1024px) {
  .cr-section {
    padding: 128px 0;
  }
}

.section-panel {
  background: var(--cr-panel);
}

.section-bg {
  background: var(--cr-bg);
}

.section-heading {
  max-width: 768px;
  margin: 0 auto 64px;
  text-align: center;
}

.eyebrow {
  margin: 0 0 16px;
  color: rgba(201, 169, 110, 0.82);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.eyebrow--bright {
  color: var(--cr-gold-light);
}

.cr-title,
.entry-title,
.cr-page-title {
  margin: 0;
  color: var(--cr-cream);
  font-family: var(--cr-font-heading);
  font-weight: 700;
  line-height: 1.1;
}

.cr-title {
  font-size: clamp(32px, 5vw, 56px);
}

.cr-title--small {
  font-size: clamp(30px, 4vw, 44px);
}

.cr-title--hero {
  color: #fff;
  font-size: clamp(40px, 7vw, 72px);
  line-height: 1.05;
  margin-bottom: 32px;
}

.cr-title--hero em {
  color: var(--cr-gold-light);
  font-style: italic;
  font-weight: 500;
}

.gold-rule {
  width: 48px;
  height: 2px;
  background: var(--cr-gold);
  margin: 24px 0;
}

.section-heading .gold-rule {
  margin-left: auto;
  margin-right: auto;
}

.section-copy {
  color: rgba(255, 255, 255, 0.55);
  font-size: 18px;
  line-height: 1.75;
  margin: 0;
}

.body-copy {
  color: rgba(255, 255, 255, 0.55);
  font-size: 16px;
  line-height: 1.75;
}

.body-copy p {
  margin: 0 0 16px;
}

.body-copy p:last-child {
  margin-bottom: 0;
}

.two-column-grid {
  display: grid;
  gap: 64px;
  align-items: center;
}

@media (min-width: 1024px) {
  .two-column-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 96px;
  }
}

/* Buttons */
.button-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cr-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 48px;
  padding: 16px 32px;
  border-radius: 2px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.04em;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
  text-align: center;
}

.cr-button:hover,
.cr-button:focus {
  transform: translateY(-1px);
}

.cr-button--primary {
  color: var(--cr-ink);
  background: var(--cr-gold);
  border: 1px solid var(--cr-gold);
}

.cr-button--primary:hover,
.cr-button--primary:focus {
  color: var(--cr-ink);
  background: #d4a96a;
  border-color: #d4a96a;
}

.cr-button--ghost {
  color: #fff;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.45);
}

.cr-button--ghost:hover,
.cr-button--ghost:focus {
  color: #fff;
  background: rgba(255, 255, 255, 0.10);
}

.cr-button--outline {
  color: #fff;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.30);
}

.cr-button--outline:hover,
.cr-button--outline:focus {
  color: #fff;
  background: rgba(255, 255, 255, 0.10);
}

.cr-button--wide {
  width: 100%;
  padding-left: 24px;
  padding-right: 24px;
  font-size: 12px;
  text-transform: uppercase;
}

.cr-button--uppercase {
  text-transform: uppercase;
}

@media (min-width: 640px) {
  .button-row {
    flex-direction: row;
  }
}

/* Hero */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--cr-panel);
}

.hero-background,
.hero-background img,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background: linear-gradient(90deg, rgba(20, 20, 16, 0.92) 0%, rgba(20, 20, 16, 0.72) 54%, rgba(20, 20, 16, 0.35) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: 128px;
  padding-bottom: 128px;
}

.hero-copy {
  max-width: 672px;
}

.hero-subtitle {
  max-width: 576px;
  color: rgba(255, 255, 255, 0.70);
  font-size: clamp(18px, 2vw, 20px);
  line-height: 1.7;
  margin: 0 0 40px;
}

.hero-badge {
  display: none;
  position: absolute;
  right: 32px;
  bottom: 128px;
  animation: cr-float 4s ease-in-out infinite;
}

.hero-badge-card {
  max-width: 320px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(201, 169, 110, 0.25);
  border-radius: 16px;
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.32);
}

.hero-badge-inner {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.hero-badge .cr-icon {
  color: var(--cr-gold-light);
  margin-top: 2px;
}

.hero-badge-title {
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  margin: 0 0 4px;
}

.hero-badge-copy {
  color: rgba(255, 255, 255, 0.50);
  font-size: 12px;
  line-height: 1.6;
  margin: 0;
}

.scroll-indicator {
  display: none;
  position: absolute;
  left: 50%;
  bottom: 32px;
  transform: translateX(-50%);
  z-index: 3;
}

.scroll-indicator a {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.40);
  transition: color 0.25s ease;
}

.scroll-indicator a:hover,
.scroll-indicator a:focus {
  color: rgba(255, 255, 255, 0.75);
}

.scroll-indicator span {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.20em;
  text-transform: uppercase;
}

.scroll-indicator .cr-icon {
  animation: cr-bounce 1.5s infinite;
}

@media (min-width: 1024px) {
  .hero-content {
    padding-top: 0;
    padding-bottom: 0;
  }

  .hero-badge,
  .scroll-indicator {
    display: block;
  }
}

@media (min-width: 1280px) {
  .hero-badge {
    bottom: 160px;
  }
}

/* About */
.about-image-wrap {
  overflow: hidden;
  border-radius: 2px;
  background: var(--cr-card);
}

.about-image-wrap img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 80px;
  padding-top: 64px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-card {
  text-align: center;
}

.stat-card .cr-icon {
  color: var(--cr-gold);
  margin-bottom: 12px;
}

.stat-value {
  color: var(--cr-cream);
  font-family: var(--cr-font-heading);
  font-size: clamp(30px, 4vw, 40px);
  line-height: 1;
  font-weight: 700;
  margin: 0 0 8px;
}

.stat-label {
  color: rgba(255, 255, 255, 0.50);
  font-size: 12px;
  letter-spacing: 0.02em;
  margin: 0;
}

@media (min-width: 1024px) {
  .about-image-wrap img {
    height: 540px;
  }

  .stats-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

/* MAP */
.download-grid {
  display: grid;
  gap: 32px;
  margin-bottom: 64px;
}

.download-card,
.instruction-card,
.process-transform-card,
.roadmap-card,
.testimonial-card,
.person-card,
.contact-link,
.contact-static {
  background: var(--cr-card);
  border: 1px solid var(--cr-border);
  border-radius: 2px;
}

.download-card {
  position: relative;
  overflow: hidden;
  padding: 32px;
}

.download-card--featured {
  border-width: 2px;
  border-color: rgba(201, 169, 110, 0.40);
}

.feature-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
  margin-bottom: 24px;
}

.feature-icon--gold {
  color: var(--cr-gold);
  background: rgba(201, 169, 110, 0.10);
  border: 1px solid rgba(201, 169, 110, 0.20);
}

.feature-icon--muted {
  color: rgba(255, 255, 255, 0.60);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.10);
}

.card-title {
  color: var(--cr-cream);
  font-family: var(--cr-font-heading);
  font-size: 24px;
  line-height: 1.2;
  font-weight: 700;
  margin: 0 0 12px;
}

.card-copy {
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
  margin: 0 0 24px;
}

.check-list {
  display: grid;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
  line-height: 1.5;
}

.check-list .cr-icon {
  color: var(--cr-gold);
  margin-top: 3px;
}

.instruction-card {
  padding: 32px;
}

.instruction-heading {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.alert-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fbbf24;
  background: rgba(245, 158, 11, 0.10);
  border: 1px solid rgba(245, 158, 11, 0.20);
  border-radius: 2px;
}

.instruction-heading h3 {
  color: var(--cr-cream);
  font-family: var(--cr-font-heading);
  font-size: 20px;
  line-height: 1.2;
  font-weight: 700;
  margin: 0 0 6px;
}

.instruction-heading p {
  color: rgba(255, 255, 255, 0.50);
  font-size: 14px;
  margin: 0;
}

.instruction-grid {
  display: grid;
  gap: 32px;
}

.instructions h4 {
  color: var(--cr-gold-light);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin: 0 0 16px;
}

.instructions p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
  line-height: 1.7;
  margin: 0 0 12px;
}

.instructions p:last-child {
  margin-bottom: 0;
}

.inline-info {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.inline-info strong {
  color: var(--cr-cream);
}

.inline-info .cr-icon,
.instructions a {
  color: var(--cr-gold);
}

.instructions a:hover,
.instructions a:focus {
  color: var(--cr-gold-light);
  text-decoration: underline;
}

@media (min-width: 768px) {
  .download-grid,
  .instruction-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .download-card,
  .instruction-card {
    padding: 40px;
  }
}

/* Process */
.process-section {
  overflow: hidden;
}

.process-background-accent {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  opacity: 0.04;
  pointer-events: none;
}

.process-background-accent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.process-grid {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 64px;
  align-items: start;
}

.process-transform-card {
  padding: 32px;
}

.transform-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.transform-side {
  flex: 1;
  text-align: center;
}

.transform-icons {
  height: 64px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 4px;
  margin-bottom: 12px;
  color: var(--cr-cream);
}

.transform-icons--stack {
  color: var(--cr-gold);
}

.transform-side p {
  color: rgba(255, 255, 255, 0.70);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
  margin: 0;
}

.transform-line {
  position: relative;
  flex: 1;
  min-width: 90px;
  border-top: 2px dashed rgba(201, 169, 110, 0.40);
}

.transform-line span {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  color: var(--cr-ink);
  background: var(--cr-gold);
  border-radius: 999px;
  padding: 4px 12px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.10em;
  text-transform: uppercase;
}

.steps-list {
  display: grid;
  gap: 32px;
}

.step-item {
  display: flex;
  align-items: flex-start;
  gap: 24px;
}

.step-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--cr-gold);
  background: var(--cr-bg);
  border: 1px solid rgba(201, 169, 110, 0.20);
  border-radius: 2px;
}

.step-number {
  color: var(--cr-gold);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  margin: 0 0 8px;
}

.step-title {
  color: var(--cr-cream);
  font-family: var(--cr-font-heading);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 8px;
}

.step-copy {
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
  margin: 0;
}

@media (min-width: 1024px) {
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 96px;
  }

  .process-sticky {
    position: sticky;
    top: 128px;
  }
}

@media (max-width: 560px) {
  .transform-row {
    flex-direction: column;
  }

  .transform-line {
    width: 2px;
    min-width: 0;
    height: 52px;
    border-top: 0;
    border-left: 2px dashed rgba(201, 169, 110, 0.40);
  }
}

/* Roadmap */
.roadmap-section {
  overflow: hidden;
}

.roadmap-background {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  pointer-events: none;
}

.roadmap-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.roadmap-grid,
.testimonials-grid {
  display: grid;
  gap: 24px;
}

.roadmap-card {
  padding: 32px;
  border-color: rgba(201, 169, 110, 0.15);
  transition: background-color 0.35s ease, border-color 0.35s ease, transform 0.35s ease;
}

.roadmap-card:hover,
.roadmap-card:focus-within {
  background: var(--cr-card-hover);
  border-color: rgba(201, 169, 110, 0.35);
  transform: translateY(-2px);
}

.roadmap-card .cr-icon {
  color: var(--cr-gold);
  margin-bottom: 20px;
}

.roadmap-card h3 {
  color: var(--cr-cream);
  font-family: var(--cr-font-heading);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 12px;
}

.roadmap-card > p {
  color: rgba(255, 255, 255, 0.50);
  font-size: 14px;
  line-height: 1.7;
  margin: 0 0 20px;
}

.role-box {
  border-top: 1px solid rgba(201, 169, 110, 0.15);
  padding-top: 16px;
}

.role-label {
  color: var(--cr-gold-light);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  margin: 0 0 8px;
}

.role-copy {
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
}

.roadmap-cta {
  margin-top: 64px;
  text-align: center;
}

@media (min-width: 768px) {
  .roadmap-grid,
  .testimonials-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .roadmap-grid,
  .testimonials-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* Testimonials */
.testimonial-card {
  padding: 32px;
}

.stars {
  display: flex;
  gap: 4px;
  color: var(--cr-gold);
  margin-bottom: 16px;
}

.stars .cr-icon {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.testimonial-text {
  color: var(--cr-copy);
  font-size: 14px;
  font-style: italic;
  line-height: 1.7;
  margin: 0 0 24px;
}

.testimonial-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.testimonial-name {
  color: var(--cr-cream);
  font-size: 14px;
  font-weight: 800;
  margin: 0;
}

.testimonial-dot {
  color: rgba(255, 255, 255, 0.20);
}

.testimonial-source {
  color: rgba(255, 255, 255, 0.50);
  font-size: 12px;
  margin: 0;
}

/* Contact footer */
.contact-footer {
  background: var(--cr-bg);
  color: #fff;
}

.contact-main {
  padding: 96px 0;
}

.contact-grid {
  display: grid;
  gap: 64px;
}

.person-card {
  padding: 24px;
  border-color: rgba(201, 169, 110, 0.20);
  margin-top: 32px;
}

.person-name {
  color: var(--cr-cream);
  font-family: var(--cr-font-heading);
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 4px;
}

.person-company {
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
  margin: 0;
}

.person-license {
  color: rgba(255, 255, 255, 0.40);
  font-size: 12px;
  margin: 4px 0 0;
}

.contact-links {
  display: grid;
  gap: 16px;
}

.contact-link,
.contact-static {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  transition: background-color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.contact-link:hover,
.contact-link:focus {
  background: var(--cr-card-hover);
  border-color: rgba(201, 169, 110, 0.30);
  transform: translateY(-1px);
}

.contact-link--featured {
  border-color: rgba(201, 169, 110, 0.20);
}

.contact-link--featured:hover,
.contact-link--featured:focus {
  border-color: rgba(201, 169, 110, 0.45);
}

.contact-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.70);
  background: var(--cr-bg);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 2px;
}

.contact-link--featured .contact-icon {
  color: var(--cr-ink);
  background: var(--cr-gold);
  border-color: var(--cr-gold);
}

.contact-label {
  color: rgba(255, 255, 255, 0.50);
  font-size: 14px;
  margin: 0 0 4px;
}

.contact-value {
  color: var(--cr-cream);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.35;
  margin: 0;
  overflow-wrap: anywhere;
}

.footer-bar {
  border-top: 1px solid rgba(201, 169, 110, 0.12);
}

.footer-bar-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 0;
}

.footer-logo img {
  width: auto;
  max-height: 32px;
  opacity: 0.80;
}

.copyright,
.footer-website {
  color: rgba(255, 255, 255, 0.40);
  font-size: 12px;
  letter-spacing: 0.02em;
  text-align: center;
  margin: 0;
}

.footer-website {
  transition: color 0.25s ease;
}

.footer-website:hover,
.footer-website:focus {
  color: var(--cr-gold-light);
}

@media (min-width: 768px) {
  .footer-bar-inner {
    flex-direction: row;
  }
}

@media (min-width: 1024px) {
  .contact-main {
    padding: 128px 0;
  }

  .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 96px;
  }
}

/* Default WP content pages */
.content-page {
  min-height: 70vh;
  padding: 128px 0 80px;
  background: #f8fafc;
  color: #1f2937;
}

.content-page .cr-container {
  max-width: 920px;
}

.entry-title,
.cr-page-title {
  color: #141410;
  font-size: clamp(34px, 5vw, 56px);
  margin-bottom: 24px;
}

.entry-content {
  color: #374151;
  font-size: 17px;
  line-height: 1.8;
}

.entry-content a {
  color: #8a6835;
  text-decoration: underline;
}

.entry-content img {
  height: auto;
}

.not-found-copy {
  margin-bottom: 24px;
}

/* Motion */
.reveal {
  opacity: 1;
  transform: none;
}

html.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

html.js .reveal.reveal-left {
  transform: translateX(-40px);
}

html.js .reveal.reveal-right {
  transform: translateX(40px);
}

html.js .reveal.is-visible {
  opacity: 1;
  transform: translate(0, 0);
}

@keyframes cr-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

@keyframes cr-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(5px); }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  html.js .reveal,
  html.js .reveal.reveal-left,
  html.js .reveal.reveal-right {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 640px) {
  .cr-container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero-content {
    padding-top: 120px;
    padding-bottom: 96px;
  }

  .cr-section,
  .contact-main {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .download-card,
  .instruction-card,
  .roadmap-card,
  .testimonial-card,
  .process-transform-card {
    padding: 24px;
  }

  .step-item {
    gap: 16px;
  }

  .step-icon {
    width: 48px;
    height: 48px;
  }

  .contact-link,
  .contact-static {
    align-items: flex-start;
  }
}

.skip-link.screen-reader-text:focus {
  clip: auto;
  width: auto;
  height: auto;
  overflow: visible;
  white-space: normal;
}

.contact-label,
.contact-value {
  display: block;
}
