/*
Theme Name: C2 Realty
Theme URI: https://c2-realty.com
Author: C2 Realty
Description: Custom theme for C2 Realty. Provides the site navigation and footer with a completely unconstrained content area so each page renders its own full-width layout.
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: c2-realty
*/

/* ============================================================
   GLOBAL RESET
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Outfit', system-ui, sans-serif;
  background: #000;
  color: #2c2a26;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Remove default WordPress margins */
.site, .site-content, #content, #primary, #main,
.entry-content, .entry-header, .entry-footer,
.post, .page, article {
  margin: 0 !important;
  padding: 0 !important;
  max-width: none !important;
  width: 100% !important;
  float: none !important;
}

/* ============================================================
   BRAND TOKENS
   ============================================================ */
:root {
  --c2-black:      #000000;
  --c2-gold:       #e9cf9b;
  --c2-tan:        #bfa574;
  --c2-gold-hover: #f0dbb2;
  --c2-cream:      #faf8f4;
  --c2-muted:      rgba(233,207,155,0.55);
  --c2-white:      #ffffff;
  --c2-text:       #2c2a26;
  --c2-text-light: #5a574f;
  --serif:         'DM Serif Display', Georgia, serif;
  --sans:          'Outfit', system-ui, sans-serif;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.c2r-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  background: rgba(0,0,0,0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(233,207,155,0.1);
}

/* WordPress admin bar offset */
.admin-bar .c2r-nav { top: 32px; }
@media screen and (max-width: 782px) {
  .admin-bar .c2r-nav { top: 46px; }
}

.c2r-nav-top {
  display: flex;
  align-items: center;
  padding: 0.9rem 2rem;
  width: 100%;
}

.c2r-logo {
  display: inline-flex;
  align-items: center;
  padding: 0.6rem 1.8rem 0.55rem;
  border: 2.5px solid var(--c2-tan);
  text-decoration: none;
  flex-shrink: 0;
  margin-right: 1.5rem;
}
.c2r-logo-text {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 2rem;
  color: var(--c2-gold);
  letter-spacing: 0.14em;
  line-height: 1;
}
.c2r-logo-text .sup {
  font-size: 0.6em;
  position: relative;
  top: -0.5em;
  margin-left: 0.02em;
  margin-right: 0.08em;
}

.c2r-nav-links {
  display: flex;
  align-items: center;
  gap: 0;
  flex-shrink: 0;
}
.c2r-nav-link {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--c2-gold);
  text-decoration: none;
  letter-spacing: 0.06em;
  padding: 0.45rem 1rem;
  transition: opacity 0.2s;
  white-space: nowrap;
}
.c2r-nav-link:hover { opacity: 0.7; color: var(--c2-gold); }

/* Dropdown */
.c2r-dropdown { position: relative; }
.c2r-dropdown-toggle {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--c2-gold);
  letter-spacing: 0.06em;
  padding: 0.45rem 1rem;
  cursor: pointer;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: opacity 0.2s;
  background: none;
  border: none;
}
.c2r-dropdown-toggle:hover { opacity: 0.7; }
.c2r-dropdown-toggle svg { width: 13px; height: 13px; transition: transform 0.2s; }
.c2r-dropdown:hover .c2r-dropdown-toggle svg { transform: rotate(180deg); }
.c2r-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%; left: 0;
  background: rgba(0,0,0,0.98);
  border: 1px solid rgba(233,207,155,0.15);
  min-width: 200px;
  flex-direction: column;
  z-index: 200;
}
.c2r-dropdown:hover .c2r-dropdown-menu { display: flex; }
.c2r-dropdown-menu a {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 1.2rem;
  color: var(--c2-gold);
  text-decoration: none;
  padding: 0.75rem 1.2rem;
  border-bottom: 1px solid rgba(233,207,155,0.07);
  transition: background 0.2s;
  white-space: nowrap;
}
.c2r-dropdown-menu a:last-child { border-bottom: none; }
.c2r-dropdown-menu a:hover { background: rgba(233,207,155,0.08); color: var(--c2-gold); }

.c2r-nav-spacer { flex: 1; }

.c2r-nav-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-shrink: 0;
  margin-right: 1.5rem;
}
.c2r-nav-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.15rem;
}
.c2r-nav-contact a {
  font-family: var(--sans);
  font-size: 1.2rem;
  font-weight: 500;
  color: rgba(233,207,155,0.65);
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: color 0.2s;
  white-space: nowrap;
}
.c2r-nav-contact a:hover { color: var(--c2-gold); }

.c2r-nav-social {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.c2r-nav-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px; height: 32px;
  color: rgba(233,207,155,0.55);
  transition: color 0.2s;
  text-decoration: none;
}
.c2r-nav-social a:hover { color: var(--c2-gold); }
.c2r-nav-social svg { width: 18px; height: 18px; fill: currentColor; }

.c2r-nav-cta {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: var(--c2-gold);
  color: var(--c2-black) !important;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 1.5rem;
  text-decoration: none !important;
  letter-spacing: 0.04em;
  transition: background 0.25s, transform 0.2s;
  flex-shrink: 0;
  white-space: nowrap;
}
.c2r-nav-cta:hover {
  background: var(--c2-gold-hover);
  transform: translateY(-1px);
  color: var(--c2-black) !important;
}

/* Hamburger */
.c2r-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
  color: var(--c2-gold);
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
}
.c2r-hamburger svg { width: 24px; height: 24px; }

/* Mobile menu */
.c2r-mobile-menu {
  display: none;
  flex-direction: column;
  background: rgba(0,0,0,0.98);
  border-top: 1px solid rgba(233,207,155,0.08);
  width: 100%;
}
.c2r-mobile-menu.is-open { display: flex; }
.c2r-mobile-link {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--c2-gold);
  text-decoration: none;
  letter-spacing: 0.06em;
  padding: 0.85rem 1.5rem;
  border-bottom: 1px solid rgba(233,207,155,0.06);
  transition: background 0.2s;
}
.c2r-mobile-link:hover { background: rgba(233,207,155,0.04); color: var(--c2-gold); }

.c2r-mobile-dropdown-toggle {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--c2-gold);
  letter-spacing: 0.06em;
  padding: 0.85rem 1.5rem;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(233,207,155,0.06);
  transition: background 0.2s;
}
.c2r-mobile-dropdown-toggle:hover { background: rgba(233,207,155,0.04); }
.c2r-mobile-dropdown-toggle svg { width: 13px; height: 13px; transition: transform 0.2s; }
.c2r-mobile-dropdown.is-open .c2r-mobile-dropdown-toggle svg { transform: rotate(180deg); }
.c2r-mobile-submenu {
  display: none;
  flex-direction: column;
  background: rgba(255,255,255,0.02);
}
.c2r-mobile-dropdown.is-open .c2r-mobile-submenu { display: flex; }
.c2r-mobile-submenu a {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 1rem;
  color: rgba(233,207,155,0.75);
  text-decoration: none;
  padding: 0.65rem 2.5rem;
  border-bottom: 1px solid rgba(233,207,155,0.05);
  transition: background 0.2s;
}
.c2r-mobile-submenu a:hover { background: rgba(233,207,155,0.04); color: var(--c2-gold); }

/* Nav responsive */
@media (max-width: 1350px) {
  .c2r-nav-links { display: none; }
  .c2r-nav-right { display: none; }
  .c2r-nav-spacer { display: none; }
  .c2r-nav-top {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 0.6rem;
  }
  .c2r-hamburger { display: flex; grid-column: 1; justify-self: start; }
  .c2r-logo { grid-column: 2; margin-right: 0; }
  .c2r-nav-cta { grid-column: 3; justify-self: end; font-size: 0.95rem; padding: 0.6rem 1rem; }
}
@media (max-width: 700px) {
  .c2r-nav-top { display: flex; align-items: center; gap: 0.5rem; }
  .c2r-logo { margin-right: auto; }
}
@media (max-width: 600px) {
  .c2r-nav-cta { font-size: 0.78rem; padding: 0.45rem 0.65rem; }
  .c2r-logo-text { font-size: 1.25rem; }
}
@media (max-width: 420px) {
  .c2r-nav-top { padding-left: 0.75rem; padding-right: 0.75rem; }
  .c2r-nav-cta { font-size: 0.65rem; padding: 0.35rem 0.5rem; }
  .c2r-logo-text { font-size: 0.9rem; }
  .c2r-logo { padding: 0.2rem 0.4rem; }
}

/* Suppress dropdown during scroll */
.c2r-nav-scrolling .c2r-dropdown-menu { display: none !important; }

/* ============================================================
   CONTENT AREA — completely unconstrained
   ============================================================ */
#c2r-content {
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: none;
}

/* ============================================================
   FOOTER
   ============================================================ */
.c2r-footer {
  padding: 2.5rem 6rem;
  background: #000;
  border-top: 1px solid rgba(233,207,155,0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.c2r-footer-logo {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 1rem 0.35rem;
  border: 1px solid rgba(233,207,155,0.25);
  text-decoration: none;
}
.c2r-footer-logo .c2r-logo-text { font-size: 1.3rem; color: rgba(233,207,155,0.5); }
.c2r-footer-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
}
.c2r-footer-contact a {
  font-size: 1.2rem;
  font-family: var(--sans);
  color: rgba(233,207,155,0.55);
  text-decoration: none;
  transition: color 0.2s;
  white-space: nowrap;
}
.c2r-footer-contact a:hover { color: var(--c2-gold); }
.c2r-footer-social {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.35rem;
}
.c2r-footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px; height: 32px;
  color: rgba(233,207,155,0.4);
  transition: color 0.2s;
  text-decoration: none;
}
.c2r-footer-social a:hover { color: var(--c2-gold); }
.c2r-footer-social svg { width: 18px; height: 18px; fill: currentColor; }
.c2r-footer-right {
  font-size: 0.8rem;
  font-family: var(--sans);
  color: rgba(255,255,255,0.28);
}
.c2r-footer-right a { color: rgba(233,207,155,0.45); text-decoration: none; transition: color 0.2s; }
.c2r-footer-right a:hover { color: var(--c2-gold); }

@media (max-width: 900px) {
  .c2r-footer { flex-direction: column; padding: 2rem 1.5rem; text-align: center; gap: 1rem; }
}

/* ============================================================
   NAV CLEARANCE — push all page content below the fixed nav
   ============================================================ */
#c2r-content {
  padding-top: 80px;
}
.admin-bar #c2r-content {
  padding-top: 112px;
}
@media screen and (max-width: 782px) {
  .admin-bar #c2r-content { padding-top: 126px; }
}

/* ============================================================
   LISTINGS PAGE — scoped under .c2r-lp
   ============================================================ */

/* NAV */
/* Top row: logo | left-nav-links | right-contact+social | CTA */

/* Left nav links — Home, Services, About Us — hugs the logo */

/* Services dropdown */

/* Spacer pushes contact+social+CTA to the right */

/* Right side: contact info + social icons */

/* Bottom nav row — hidden on desktop, shown on mobile */

/* HERO */
.c2r-lp .hero {
  position: relative;
  min-height: calc(100vh + 200px);
  display: flex; align-items: flex-start;
  padding: 8rem 6rem 14rem;
  background: #000000;
  overflow: hidden;
}
.c2r-lp .hero .hero-grid {
  margin-top: auto;
  margin-bottom: auto;
}
.c2r-lp .hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 75% 40%, rgba(233,207,155,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 20% 70%, rgba(191,165,116,0.04) 0%, transparent 60%);
}
.c2r-lp .hero::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 200px;
  background: linear-gradient(to top, #faf8f4, transparent);
  z-index: 2;
}
.c2r-lp .hero-grid {
  position: relative; z-index: 3;
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem; max-width: 1600px; width: 100%; margin: 0 auto; align-items: center;
}
.c2r-lp .hero-content { animation: fadeSlideUp 0.8s ease-out both; }
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.c2r-lp .hero-eyebrow {
  display: inline-block;
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: #e9cf9b;
  margin-bottom: 1.2rem;
  padding: 0.35rem 0.9rem;
  border: 1px solid rgba(233,207,155,0.25);
}
.c2r-lp .hero h1 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(3rem, 5.5vw, 5rem);
  line-height: 1.12;
  color: #ffffff;
  margin-bottom: 1.4rem;
}
.c2r-lp .hero h1 em { font-style: italic; color: #e9cf9b; }
.c2r-lp .hero-sub {
  font-size: 1.25rem; line-height: 1.7;
  color: rgba(233,207,155,0.55);
  margin-bottom: 2rem; max-width: 580px; font-weight: 600;
}
.c2r-lp .hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }

.c2r-lp .btn-primary {
  display: inline-block;
  padding: 0.9rem 2rem;
  background: #e9cf9b;
  color: #000000;
  font-family: 'Outfit', system-ui, sans-serif; font-weight: 700; font-size: 1rem;
  text-decoration: none; letter-spacing: 0.03em;
  transition: all 0.25s; border: none; cursor: pointer;
}
.c2r-lp .btn-primary:hover { background: #f0dbb2; transform: translateY(-2px); box-shadow: 0 8px 25px rgba(233,207,155,0.25); }

.c2r-lp .btn-secondary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.9rem 2rem;
  background: transparent;
  color: #ffffff;
  font-family: 'Outfit', system-ui, sans-serif; font-weight: 500; font-size: 1rem;
  text-decoration: none;
  border: 1.5px solid rgba(255,255,255,0.18);
  transition: all 0.25s; cursor: pointer;
}
.c2r-lp .btn-secondary:hover { border-color: #e9cf9b; color: #e9cf9b; }

.c2r-lp .hero-visual { position: relative; animation: fadeSlideUp 0.8s ease-out 0.2s both; }
.c2r-lp .hero-image-frame {
  position: relative; overflow: hidden;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, rgba(233,207,155,0.07), rgba(191,165,116,0.05));
  border: 1px solid rgba(233,207,155,0.1);
}
.c2r-lp .hero-image-frame .placeholder-scene {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 2rem; text-align: center;
}
.c2r-lp .placeholder-scene .icon-house { font-size: 4rem; margin-bottom: 1rem; opacity: 0.7; }
.c2r-lp .placeholder-scene p { color: rgba(255,255,255,0.35); font-size: 0.85rem; }
.c2r-lp .hero-stat-float {
  position: absolute; bottom: -20px; left: -20px;
  background: #ffffff;
  padding: 1.1rem 1.5rem;
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
  display: flex; align-items: center; gap: 0.8rem;
  animation: fadeSlideUp 0.8s ease-out 0.5s both;
}
.c2r-lp .hero-stat-float .stat-number { font-family: 'DM Serif Display', Georgia, serif; font-size: 1.6rem; color: #bfa574; line-height: 1; }
.c2r-lp .hero-stat-float .stat-label { font-size: 0.78rem; color: #8a8578; line-height: 1.3; font-weight: 500; }

/* SECTION SHARED */
.c2r-lp .section-eyebrow {
  display: inline-block;
  font-size: 0.73rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: #bfa574; margin-bottom: 1rem;
}

/* STAKES */
.c2r-lp .stakes { padding: 6rem 6rem; background: #faf8f4; }
.c2r-lp .stakes-inner { max-width: 1600px; margin: 0 auto; text-align: center; }
.c2r-lp .stakes h2 { font-family: 'DM Serif Display', Georgia, serif; font-size: clamp(1.8rem, 3.5vw, 2.6rem); color: #000000; margin-bottom: 2.5rem; line-height: 1.2; }
.c2r-lp .stakes-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.c2r-lp .stake-card {
  background: #ffffff; padding: 2rem 1.8rem; text-align: left;
  border: 1px solid rgba(0,0,0,0.05);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative; overflow: hidden;
}
.c2r-lp .stake-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: #b5453a; opacity: 0.45; }
.c2r-lp .stake-card:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(0,0,0,0.06); }
.c2r-lp .stake-card-header { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.6rem; }
.c2r-lp .stake-icon { width: 40px; height: 40px; background: rgba(181,69,58,0.08); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: #b5453a; }
.c2r-lp .stake-icon svg { width: 20px; height: 20px; }
.c2r-lp .stake-card h3 { font-weight: 600; font-size: 1.3rem; color: #000000; margin-bottom: 0; line-height: 1.2; }
.c2r-lp .stake-card p { font-size: 1.05rem; color: #5a574f; line-height: 1.6; font-weight: 500; }

/* VALUE PROPOSITION */
.c2r-lp .value-prop { padding: 6rem 6rem; background: #ffffff; }
.c2r-lp .value-prop-inner { max-width: 1600px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.c2r-lp .value-prop-text h2 { font-family: 'DM Serif Display', Georgia, serif; font-size: clamp(1.8rem, 3.5vw, 2.5rem); color: #e9cf9b; margin-bottom: 1.2rem; line-height: 1.2; }
.c2r-lp .value-prop-text h2 em { color: #bfa574; font-style: italic; }
.c2r-lp .value-prop-text > p { font-size: 1.2rem; color: #5a574f; line-height: 1.8; font-weight: 300; margin-bottom: 1.5rem; }
.c2r-lp .value-items { display: flex; flex-direction: column; gap: 0.9rem; }
.c2r-lp .value-line {
  display: flex; align-items: center; gap: 0.75rem;
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: 1.15rem;
  font-weight: 500;
  color: #2c2a26;
  line-height: 1.4;
}
.c2r-lp .value-line .vl-slash {
  font-weight: 700;
  font-size: 1.2em;
  color: #bfa574;
  flex-shrink: 0;
  line-height: 1;
}

.c2r-lp .value-visual { position: relative; }
.c2r-lp .success-card { background: #f5f0e8; padding: 2.5rem; border: 1px solid rgba(0,0,0,0.04); }
.c2r-lp .success-card .label { font-size: 0.73rem; font-weight: 700; letter-spacing: 0.13em; text-transform: uppercase; color: #5a8a5e; margin-bottom: 1.5rem; }
.c2r-lp .success-list { list-style: none; display: flex; flex-direction: column; gap: 1.2rem; }
.c2r-lp .success-list li { display: flex; align-items: flex-start; gap: 0.8rem; font-size: 1rem; color: #2c2a26; line-height: 1.5; }
.c2r-lp .success-list .s-icon { width: 24px; height: 24px; background: rgba(90,138,94,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 0.15rem; }
.c2r-lp .success-list .s-icon svg { width: 12px; height: 12px; color: #5a8a5e; }

/* GUIDE */
.c2r-lp .guide { padding: 6rem 6rem; background: #000000; position: relative; overflow: hidden; }
.c2r-lp .guide::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 50% 80% at 80% 50%, rgba(233,207,155,0.04), transparent); }
.c2r-lp .guide-inner { position: relative; z-index: 2; max-width: 1600px; margin: 0 auto; text-align: center; }
.c2r-lp .guide h2 { font-family: 'DM Serif Display', Georgia, serif; font-size: clamp(1.8rem, 3.5vw, 2.5rem); color: #ffffff; margin-bottom: 1rem; line-height: 1.2; }
.c2r-lp .guide-subtitle { font-size: 1.05rem; color: rgba(233,207,155,0.55); max-width: 620px; margin: 0 auto 3rem; line-height: 1.7; font-weight: 300; }
.c2r-lp .guide-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; text-align: left; }
.c2r-lp .guide-card { background: rgba(255,255,255,0.03); border: 1px solid rgba(233,207,155,0.1); padding: 2rem; transition: border-color 0.3s; }
.c2r-lp .guide-card:hover { border-color: rgba(233,207,155,0.25); }
.c2r-lp .guide-card .g-label { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: #e9cf9b; margin-bottom: 0.8rem; }
.c2r-lp .guide-card h3 { font-family: 'DM Serif Display', Georgia, serif; font-size: 1.25rem; color: #ffffff; margin-bottom: 0.7rem; line-height: 1.3; }
.c2r-lp .guide-card p { font-size: 1.1rem; color: rgba(255,255,255,0.7); line-height: 1.7; font-weight: 600; }
.c2r-lp .guide-card .highlight { font-size: 1.5rem; color: #e9cf9b; font-weight: 700; }

/* GUIDE TEAM */
.c2r-lp .guide-team {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
  margin-top: 3rem;
}
.c2r-lp .guide-team-member {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(233,207,155,0.1);
  padding: 2rem 1.5rem 1.75rem;
  transition: border-color 0.3s;
}
.c2r-lp .guide-team-member:hover { border-color: rgba(233,207,155,0.25); }
.c2r-lp .guide-team-photo {
  width: 180px; height: 180px; border-radius: 50%;
  background: rgba(233,207,155,0.07);
  border: 2px solid rgba(233,207,155,0.2);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.4rem; overflow: hidden; flex-shrink: 0;
}
.c2r-lp .guide-team-photo img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.c2r-lp .guide-team-photo .photo-placeholder {
  font-size: 3.5rem; opacity: 0.35;
}
.c2r-lp .guide-team-name {
  font-family: 'DM Serif Display', Georgia, serif; font-size: 1.55rem;
  color: #ffffff; margin-bottom: 0.4rem; line-height: 1.2;
}
.c2r-lp .guide-team-title {
  font-size: 0.95rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: #e9cf9b; margin-bottom: 0;
}
@media (max-width: 900px) {.c2r-lp .guide-team { grid-template-columns: 1fr; max-width: 280px; margin: 2.5rem auto 0; }}

/* PLAN */
.c2r-lp .plan { padding: 6rem 6rem; background: #faf8f4; }
.c2r-lp .plan-inner { max-width: 1400px; margin: 0 auto; text-align: center; }
.c2r-lp .plan h2 { font-family: 'DM Serif Display', Georgia, serif; font-size: clamp(1.8rem, 3.5vw, 2.5rem); color: #000000; margin-bottom: 3rem; line-height: 1.2; }
.c2r-lp .plan-subtitle { font-size: 1.05rem; color: #5a574f; margin-bottom: 3.5rem; font-weight: 300; }
.c2r-lp .plan-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; position: relative; }
.c2r-lp .plan-steps::before { content: ''; position: absolute; top: 36px; left: 15%; right: 15%; height: 2px; background: linear-gradient(to right, #e9cf9b, #bfa574); opacity: 0.3; }
.c2r-lp .plan-step { position: relative; text-align: center; }
.c2r-lp .step-number {
  width: 72px; height: 72px;
  background: #ffffff;
  border: 2px solid #e9cf9b;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.3rem;
  font-family: 'DM Serif Display', Georgia, serif; font-size: 1.5rem; color: #bfa574;
  position: relative; z-index: 2;
  box-shadow: 0 4px 15px rgba(191,165,116,0.12);
}
.c2r-lp .plan-step h3 { font-weight: 500; font-size: 1.1rem; color: #2c2a26; line-height: 1.5; max-width: 280px; margin: 0 auto; }

/* EXPLANATORY */
.c2r-lp .explanatory { padding: 6rem 6rem; background: #ffffff; }
.c2r-lp .explanatory-inner { max-width: 900px; margin: 0 auto; text-align: center; }
.c2r-lp .explanatory h2 { font-family: 'DM Serif Display', Georgia, serif; font-size: clamp(1.8rem, 3.5vw, 2.4rem); color: #000000; margin-bottom: 1.5rem; line-height: 1.25; }
.c2r-lp .explanatory p { font-size: 1.2rem; color: #5a574f; line-height: 1.85; font-weight: 300; margin-bottom: 1.2rem; }
.c2r-lp .explanatory-cta { margin-top: 2rem; }

/* LEAD GENERATOR */
.c2r-lp .lead-gen { padding: 6rem 6rem; background: #faf8f4; }
.c2r-lp .lead-gen-inner { max-width: 1400px; margin: 0 auto; }
.c2r-lp .lead-gen-header { text-align: center; margin-bottom: 3rem; }
.c2r-lp .lead-gen-header h2 { font-family: 'DM Serif Display', Georgia, serif; font-size: clamp(1.8rem, 3.5vw, 2.5rem); color: #000000; margin-bottom: 0.8rem; line-height: 1.25; }
.c2r-lp .lead-gen-header p { font-size: 1.15rem; color: #5a574f; font-weight: 400; }
.c2r-lp .lead-gen-panels { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.c2r-lp .lead-gen-panel {
  background: #000000;
  padding: 3.5rem 3rem;
  position: relative; overflow: hidden;
  display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center;
}
.c2r-lp .lead-gen-panel::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 70% 70% at 50% 80%, rgba(233,207,155,0.06), transparent); }
.c2r-lp .lead-gen-panel > .lead-gen-panel .lg-icon { font-size: 2.5rem; margin-bottom: 1.2rem; }
.c2r-lp .lead-gen-panel .lg-eyebrow { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: #e9cf9b; margin-bottom: 0.8rem; }
.c2r-lp .lead-gen-panel h3 { font-family: 'DM Serif Display', Georgia, serif; font-size: 1.5rem; color: #ffffff; margin-bottom: 0.8rem; line-height: 1.3; }
.c2r-lp .lead-gen-panel p { font-size: 1.25rem; color: rgba(255,255,255,0.7); line-height: 1.7; font-weight: 600; margin-bottom: 1.5rem; }
.c2r-lp .lead-gen-panel .btn-primary { padding: 1rem 2.5rem; font-size: 1.15rem; }
.c2r-lp .lead-gen-panel .lg-email-row { display: flex; flex-direction: column; gap: 0.8rem; width: 100%; max-width: 320px; }
.c2r-lp .lead-gen-panel .lg-email-row input {
  width: 100%; padding: 0.85rem 1rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(233,207,155,0.12);
  color: #ffffff;
  font-family: 'Outfit', system-ui, sans-serif; font-size: 0.92rem;
  outline: none; transition: border-color 0.25s;
  text-align: center;
}
.c2r-lp .lead-gen-panel .lg-email-row input::placeholder { color: rgba(255,255,255,0.3); }
.c2r-lp .lead-gen-panel .lg-email-row input:focus { border-color: #e9cf9b; }
.c2r-lp .lead-gen-panel .lg-email-row .btn-primary { flex-shrink: 0; width: 100%; text-align: center; }

/* CTA BANNER */
.c2r-lp .cta-banner { padding: 5rem 6rem; background: #000000; text-align: center; position: relative; }
.c2r-lp .cta-banner::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 50% 60% at 50% 50%, rgba(233,207,155,0.04), transparent); }
.c2r-lp .cta-banner h2 { font-family: 'DM Serif Display', Georgia, serif; font-size: clamp(1.8rem, 3.5vw, 2.6rem); color: #ffffff; margin-bottom: 2.5rem; line-height: 1.25; position: relative; }
.c2r-lp .cta-banner p { font-size: 1.05rem; color: rgba(233,207,155,0.55); margin-bottom: 2rem; font-weight: 300; position: relative; }
.c2r-lp .cta-banner-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; position: relative; }

/* FOOTER */
.c2r-lp .footer {
  padding: 2.5rem 6rem;
  background: #000000;
  border-top: 1px solid rgba(233,207,155,0.08);
  display: flex; align-items: center; justify-content: space-between; gap: 2rem;
}
.c2r-lp .footer-logo {
  display: inline-flex; align-items: center;
  padding: 0.4rem 1rem 0.35rem;
  border: 1px solid rgba(233,207,155,0.25);
  text-decoration: none;
}
.c2r-lp .footer-logo .nav-logo-text { font-size: 1.3rem; color: rgba(233,207,155,0.5); }
.c2r-lp .footer-right { font-size: 0.8rem; color: rgba(255,255,255,0.28); }
.c2r-lp .footer-right a { color: rgba(233,207,155,0.45); text-decoration: none; transition: color 0.2s; }
.c2r-lp .footer-right a:hover { color: #e9cf9b; }

/* RESPONSIVE */
@media (max-width: 900px) {.c2r-lp .nav { padding: 0.8rem 1.2rem; gap: 0; }
  .c2r-lp .nav-top-row { flex-wrap: nowrap; gap: 0.6rem; align-items: center; }
  .c2r-lp .nav-logo { padding: 0.35rem 0.8rem; border-width: 2px; }
  .c2r-lp .nav-links { display: none; }
  .c2r-lp .nav-bottom-row { display: none; }
  .c2r-lp .nav-hamburger { display: flex; align-items: center; }
  .c2r-lp .nav-logo-text { font-size: 1.25rem; }
  .c2r-lp .nav-right { display: none; }
  .c2r-lp .nav-cta { font-size: 0.95rem; padding: 0.6rem 1rem; flex-shrink: 0; }
  .c2r-lp .hero { padding: 10rem 1.5rem 3rem; min-height: auto; }
  .c2r-lp .hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .c2r-lp .hero .hero-grid { margin-top: 0; }
  .c2r-lp .hero-visual { display: block; }
  .c2r-lp .stakes-cards { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .c2r-lp .value-prop-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .c2r-lp .guide-cards { grid-template-columns: 1fr; }
  .c2r-lp .plan-steps { grid-template-columns: 1fr; gap: 2.5rem; }
  .c2r-lp .plan-steps::before { display: none; }
  .c2r-lp .lead-gen-card { grid-template-columns: 1fr; padding: 2.5rem 2rem; }
  .c2r-lp .lead-gen-panels { grid-template-columns: 1fr; }
  .c2r-lp .footer { flex-direction: column; gap: 1rem; text-align: center; }
  .c2r-lp section { padding-left: 1.5rem !important; padding-right: 1.5rem !important; }}
@media (max-width: 600px) {.c2r-lp .hero h1 { font-size: 2rem; }
  .c2r-lp .hero-ctas { flex-direction: column; }
  .c2r-lp .btn-primary, .c2r-lp .btn-secondary { width: 100%; text-align: center; justify-content: center; }}

/* HAMBURGER BUTTON */

/* MOBILE MENU */

/* FOOTER CONTACT */
.c2r-lp .footer-contact-block {
  display: flex; flex-direction: column; align-items: center; gap: 0.3rem;
}
.c2r-lp .footer-contact-block a {
  font-size: 1.2rem; color: rgba(233,207,155,0.55);
  text-decoration: none; transition: color 0.2s; white-space: nowrap;
}
.c2r-lp .footer-contact-block a:hover { color: #e9cf9b; }
.c2r-lp .footer-social-block {
  display: flex; align-items: center; gap: 0.5rem; margin-top: 0.35rem;
}
.c2r-lp .footer-social-block a {
  display: flex; align-items: center; justify-content: center;
  width: 32px; height: 32px; color: rgba(233,207,155,0.4);
  transition: color 0.2s;
}
.c2r-lp .footer-social-block a:hover { color: #e9cf9b; }
.c2r-lp .footer-social-block svg { width: 18px; height: 18px; fill: currentColor; }

/* suppress desktop dropdown during scroll */

/* NAV: switch to hamburger before CTA clips (must be after base .nav-hamburger rule to win cascade) */
@media (max-width: 1350px) {.c2r-lp .nav-links { display: none; }
  .c2r-lp .nav-right { display: none; }
  .c2r-lp .nav-spacer { display: none; }
  .c2r-lp .nav-bottom-row { display: none; }
  .c2r-lp .nav-top-row { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 0.6rem; }
  .c2r-lp .nav-hamburger { display: flex; align-items: center; grid-column: 1; grid-row: 1; justify-self: start; align-self: center; }
  .c2r-lp .nav-logo { grid-column: 2; margin-right: 0; }
  .c2r-lp .nav-cta { grid-column: 3; justify-self: end; font-size: 0.95rem; padding: 0.6rem 1rem; }}
@media (max-width: 700px) {.c2r-lp .nav-top-row { display: flex; align-items: center; gap: 0.5rem; }
  .c2r-lp .nav-logo { margin-right: auto; }}
@media (max-width: 600px) {.c2r-lp .nav-cta { font-size: 0.78rem; padding: 0.45rem 0.65rem; }
  .c2r-lp .nav-logo-text { font-size: 1.05rem; }}
@media (max-width: 420px) {.c2r-lp .nav-top-row { padding-left: 0.75rem; padding-right: 0.75rem; }
  .c2r-lp .nav-cta { font-size: 0.65rem; padding: 0.35rem 0.5rem; }
  .c2r-lp .nav-logo-text { font-size: 0.9rem; }
  .c2r-lp .nav-logo { padding: 0.2rem 0.4rem; }}

/* ── Hard overrides (must beat WordPress defaults) ─────────── */

/* Kill any WordPress-injected margins between sections */
.c2r-lp section {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  display: block !important;
}

/* Section backgrounds */
.c2r-lp .hero        { background: #000000 !important; }
.c2r-lp .guide       { background: #000000 !important; }
.c2r-lp .cta-banner  { background: #000000 !important; }
.c2r-lp .lead-gen-panel { background: #000000 !important; }
.c2r-lp .stakes      { background: #faf8f4 !important; }
.c2r-lp .value-prop  { background: #ffffff !important; }
.c2r-lp .plan        { background: #faf8f4 !important; }
.c2r-lp .explanatory { background: #ffffff !important; }
.c2r-lp .lead-gen    { background: #faf8f4 !important; }

/* Hero: just enough padding to breathe under the nav clearance */
.c2r-lp .hero { padding-top: 2rem !important; }

/* Force 3-column / 2-column grids */
.c2r-lp .guide-team        { display: grid !important; grid-template-columns: repeat(3,1fr) !important; }
.c2r-lp .stakes-cards      { display: grid !important; grid-template-columns: repeat(3,1fr) !important; }
.c2r-lp .plan-steps        { display: grid !important; grid-template-columns: repeat(3,1fr) !important; }
.c2r-lp .value-prop-inner  { display: grid !important; grid-template-columns: 1fr 1fr !important; }
.c2r-lp .lead-gen-panels   { display: grid !important; grid-template-columns: 1fr 1fr !important; }
@media (max-width: 900px) {
  .c2r-lp .guide-team        { grid-template-columns: 1fr !important; }
  .c2r-lp .stakes-cards      { grid-template-columns: 1fr !important; }
  .c2r-lp .plan-steps        { grid-template-columns: 1fr !important; }
  .c2r-lp .value-prop-inner  { grid-template-columns: 1fr !important; }
  .c2r-lp .lead-gen-panels   { grid-template-columns: 1fr !important; }
}

/* Buttons — fully override WP link defaults */
.c2r-lp .btn-primary,
.c2r-lp .btn-primary:link,
.c2r-lp .btn-primary:visited {
  display: inline-block !important;
  width: auto !important;
  max-width: none !important;
  box-sizing: border-box !important;
  padding: 0.9rem 2rem !important;
  background: #e9cf9b !important;
  color: #000000 !important;
  text-decoration: none !important;
  text-align: center !important;
  vertical-align: middle !important;
  font-family: 'Outfit', system-ui, sans-serif !important;
  font-weight: 700 !important;
  font-size: 1rem !important;
  line-height: 1.4 !important;
  letter-spacing: 0.03em !important;
  border: none !important;
  outline: none !important;
  cursor: pointer !important;
  box-shadow: none !important;
  float: none !important;
  margin: 0 !important;
}
.c2r-lp .btn-primary:hover,
.c2r-lp .btn-primary:focus {
  background: #f0dbb2 !important;
  color: #000000 !important;
  text-decoration: none !important;
}
.c2r-lp .btn-secondary,
.c2r-lp .btn-secondary:link,
.c2r-lp .btn-secondary:visited {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: auto !important;
  box-sizing: border-box !important;
  gap: 0.5rem !important;
  padding: 0.9rem 2rem !important;
  background: transparent !important;
  color: #ffffff !important;
  text-decoration: none !important;
  text-align: center !important;
  font-family: 'Outfit', system-ui, sans-serif !important;
  font-weight: 500 !important;
  font-size: 1rem !important;
  line-height: 1.4 !important;
  border: 1.5px solid rgba(255,255,255,0.18) !important;
  outline: none !important;
  cursor: pointer !important;
  box-shadow: none !important;
  float: none !important;
  margin: 0 !important;
}
.c2r-lp .btn-secondary:hover,
.c2r-lp .btn-secondary:focus {
  border-color: #e9cf9b !important;
  color: #e9cf9b !important;
  text-decoration: none !important;
}

/* Hero CTAs — prevent flex children from stretching */
.c2r-lp .hero-ctas {
  display: flex !important;
  align-items: center !important;
  gap: 1rem !important;
  flex-wrap: wrap !important;
}

/* Light-section text colours */
.c2r-lp .stakes h2,
.c2r-lp .plan h2,
.c2r-lp .explanatory h2,
.c2r-lp .lead-gen-header h2 { color: #000000 !important; }
.c2r-lp .stake-card p,
.c2r-lp .plan-step h3,
.c2r-lp .explanatory p,
.c2r-lp .lead-gen-header p,
.c2r-lp .value-prop-text > p,
.c2r-lp .value-line          { color: #5a574f !important; }
.c2r-lp .stake-card h3       { color: #000000 !important; }

/* Widths */
.c2r-lp .hero-grid,
.c2r-lp .stakes-cards,
.c2r-lp .guide-cards,
.c2r-lp .plan-steps,
.c2r-lp .lead-gen-panels { max-width: none !important; width: 100% !important; }

/* Quiz-only lead-gen panel — full width, centred, bigger */
.c2r-lp .lead-gen-panel-solo {
  max-width: 760px !important;
  margin: 0 auto !important;
  padding: 5rem 4rem !important;
  text-align: center !important;
}
.c2r-lp .lead-gen-panel-solo h3 {
  font-family: 'DM Serif Display', Georgia, serif !important;
  font-size: clamp(2rem, 4vw, 3rem) !important;
  color: #ffffff !important;
  margin-bottom: 1.2rem !important;
  line-height: 1.2 !important;
}
.c2r-lp .lead-gen-panel-solo p {
  font-size: 1.3rem !important;
  color: rgba(255,255,255,0.75) !important;
  margin-bottom: 2rem !important;
  line-height: 1.7 !important;
}
.c2r-lp .lead-gen-panel-solo .btn-primary {
  padding: 1.1rem 3rem !important;
  font-size: 1.15rem !important;
}
@media (max-width: 600px) {
  .c2r-lp .lead-gen-panel-solo { padding: 3.5rem 2rem !important; }
}

/* ── Btn-secondary: force inline-flex so icon + text stay on one line ── */
.c2r-lp .btn-secondary,
.c2r-lp .btn-secondary:link,
.c2r-lp .btn-secondary:visited {
  display: inline-flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: center !important;
  flex-wrap: nowrap !important;
  gap: 0.5rem !important;
  vertical-align: middle !important;
}
.c2r-lp .btn-secondary svg {
  display: inline-block !important;
  vertical-align: middle !important;
  flex-shrink: 0 !important;
  width: 16px !important;
  height: 16px !important;
  margin: 0 !important;
  position: static !important;
  top: auto !important;
  float: none !important;
}

/* ── Stake card header: force icon + title onto one centred row ─────── */
.c2r-lp .stake-card-header {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 0.75rem !important;
  flex-wrap: nowrap !important;
  margin-bottom: 0.6rem !important;
}
.c2r-lp .stake-icon {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-shrink: 0 !important;
  width: 40px !important;
  height: 40px !important;
  float: none !important;
  position: static !important;
}
.c2r-lp .stake-icon svg {
  display: block !important;
  width: 20px !important;
  height: 20px !important;
  margin: 0 !important;
  float: none !important;
}
.c2r-lp .stake-card h3 {
  display: inline !important;
  float: none !important;
  margin: 0 !important;
}
