/* ============================================================
   Restoration Asset Group — main.css
   Navy #1B2A4A | Green #2D5A27 | Silver #A0AAB5
   ============================================================ */

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

:root {
  --navy:      #1B2A4A;
  --navy-dark: #111d33;
  --navy-mid:  #243659;
  --green:     #2D5A27;
  --green-lt:  #3a7332;
  --green-pale:#e8f2e7;
  --silver:    #A0AAB5;
  --silver-lt: #d0d8e0;
  --off-white: #f7f9fb;
  --text:      #1a2640;
  --text-mid:  #4a5568;
  --text-lt:   #6b7a8d;
  --white:     #ffffff;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  margin: 0;
  padding: 0;
}

/* WordPress theme resets */
.site, .site-content, .wp-site-blocks { padding: 0 !important; margin: 0 !important; max-width: none !important; }
.entry-content, .wp-block-post-content { padding: 0 !important; margin: 0 !important; max-width: none !important; }
body.page .entry-header { display: none; }

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
h1, h2, h3, h4 { line-height: 1.15; font-weight: 700; color: var(--navy); }

/* ── Layout ── */
.wrap { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.bg-white    { background: var(--white); }
.bg-offwhite { background: var(--off-white); }
.bg-navy     { background: var(--navy-dark); }
.center      { text-align: center; }
.white       { color: var(--white) !important; }
.muted       { color: rgba(255,255,255,0.65) !important; }
.green-text  { color: #6ecf6a; }

.label {
  display: inline-block;
  font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--green); background: var(--green-pale); border: 1px solid rgba(45,90,39,0.2);
  padding: 5px 12px; border-radius: 20px; margin-bottom: 14px;
}
.label--light { background: rgba(45,90,39,0.25); border-color: rgba(45,90,39,0.45); color: #a8d4a5; }

.section__head { margin-bottom: 48px; }
.section__head h2 { font-size: clamp(24px, 4vw, 42px); font-weight: 800; margin-bottom: 14px; }
.section__sub { font-size: 17px; color: var(--text-mid); max-width: 580px; line-height: 1.75; }
.center .section__sub, .center-sub { margin: 12px auto 0; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: inherit; font-weight: 600; font-size: 15px;
  padding: 13px 28px; border-radius: 6px; border: 2px solid transparent;
  cursor: pointer; text-decoration: none; transition: all 0.2s;
  white-space: nowrap; line-height: 1;
}
.btn--lg   { font-size: 17px; padding: 15px 34px; }
.btn--sm   { font-size: 13px; padding: 9px 18px; }
.btn--full { width: 100%; }

.btn--green { background: var(--green); color: #fff; border-color: var(--green); box-shadow: 0 4px 14px rgba(45,90,39,0.3); }
.btn--green:hover { background: var(--green-lt); border-color: var(--green-lt); transform: translateY(-2px); color: #fff; }

.btn--navy { background: var(--navy); color: #fff; border-color: var(--navy); }
.btn--navy:hover { background: var(--navy-mid); border-color: var(--navy-mid); color: #fff; transform: translateY(-1px); }

.btn--white { background: #fff; color: var(--green); border-color: #fff; font-weight: 700; box-shadow: 0 4px 16px rgba(0,0,0,0.15); }
.btn--white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); color: var(--green); }

.btn--outline-white { background: transparent; color: #fff; border-color: rgba(255,255,255,0.5); }
.btn--outline-white:hover { border-color: #fff; background: rgba(255,255,255,0.1); color: #fff; }

/* ── Header ── */
.site-header {
  position: sticky; top: 0; z-index: 999;
  background: #fff;
  border-bottom: 1px solid var(--silver-lt);
  box-shadow: 0 2px 12px rgba(27,42,74,0.07);
}
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  max-width: 1100px; margin: 0 auto; padding: 0 24px; height: 68px;
}
.site-logo { font-size: 18px; font-weight: 900; color: var(--navy); white-space: nowrap; }
.site-logo span { color: var(--green); }

.site-nav { display: flex; align-items: center; gap: 4px; }
.site-nav ul { display: flex; align-items: center; gap: 2px; list-style: none; margin: 0; padding: 0; }
.site-nav ul a {
  font-size: 14px; font-weight: 500; color: var(--text-mid);
  padding: 8px 12px; border-radius: 5px; display: block;
  transition: color 0.15s, background 0.15s;
}
.site-nav ul a:hover { color: var(--navy); background: var(--off-white); }
.nav-cta {
  margin-left: 8px;
  background: #fff; color: var(--navy);
  font-size: 13px; font-weight: 700;
  padding: 9px 18px; border-radius: 6px; border: 2px solid var(--navy);
  text-decoration: none; white-space: nowrap;
  transition: background 0.2s, color 0.2s;
}
.nav-cta:hover { background: var(--navy); color: #fff; }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span { display: block; width: 24px; height: 2px; background: var(--navy); border-radius: 2px; }

.mobile-nav {
  display: none; flex-direction: column;
  background: #fff; border-top: 1px solid var(--silver-lt);
  padding: 12px 24px 20px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-size: 15px; font-weight: 500; color: var(--text-mid);
  padding: 11px 0; border-bottom: 1px solid var(--off-white);
  display: block; text-decoration: none;
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav__cta { color: var(--green) !important; font-weight: 700 !important; margin-top: 4px; }

@media (max-width: 820px) {
  .site-nav { display: none; }
  .hamburger { display: flex; }
}

/* ── Hero ── */
.hero {
  position: relative; overflow: hidden;
  padding: 100px 0 90px;
  background: linear-gradient(135deg, #111d33 0%, #1B2A4A 55%, #223355 100%);
}
.hero__bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 48px 48px;
}
.hero .wrap { position: relative; z-index: 1; }
.hero__inner { text-align: center; max-width: 820px; margin: 0 auto; }
.badge {
  display: inline-block; font-size: 12px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  color: #a8d4a5; background: rgba(45,90,39,0.25); border: 1px solid rgba(45,90,39,0.5);
  padding: 7px 16px; border-radius: 20px; margin-bottom: 28px;
}
.hero h1 {
  color: #fff; font-size: clamp(34px, 6vw, 68px); font-weight: 900;
  line-height: 1.05; margin-bottom: 24px; letter-spacing: -0.02em;
}
.hero__sub {
  color: rgba(255,255,255,0.75); font-size: clamp(16px, 2vw, 19px);
  max-width: 620px; margin: 0 auto 40px; line-height: 1.7;
}
.hero__btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero__stats {
  display: flex; justify-content: center; gap: 40px; flex-wrap: wrap;
  margin-top: 60px; padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.stat__num { font-size: 34px; font-weight: 900; color: #fff; line-height: 1; margin-bottom: 4px; }
.stat__lbl { font-size: 12px; color: rgba(255,255,255,0.55); letter-spacing: 0.04em; }

/* ── Trust bar ── */
.trust-bar { background: var(--off-white); border-bottom: 1px solid var(--silver-lt); padding: 16px 0; }
.trust-bar__inner {
  max-width: 1100px; margin: 0 auto; padding: 0 24px;
  display: flex; justify-content: center; flex-wrap: wrap; gap: 10px 28px;
}
.trust-bar__inner span { font-size: 13px; font-weight: 500; color: var(--text-mid); }

/* ── Props grid ── */
.props-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 48px; }
@media (max-width: 720px) { .props-grid { grid-template-columns: 1fr; } }
.prop-card { background: var(--off-white); border: 1px solid var(--silver-lt); border-radius: 12px; padding: 28px; transition: box-shadow 0.2s, transform 0.2s; }
.prop-card:hover { box-shadow: 0 8px 28px rgba(27,42,74,0.09); transform: translateY(-3px); }
.prop-card__icon { font-size: 28px; margin-bottom: 14px; }
.prop-card h3 { font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.prop-card p { font-size: 14px; color: var(--text-mid); line-height: 1.7; }

/* ── Steps ── */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: 56px; position: relative; }
.steps-grid::before { content: ''; position: absolute; top: 36px; left: 12.5%; right: 12.5%; height: 2px; background: rgba(255,255,255,0.12); }
@media (max-width: 720px) { .steps-grid { grid-template-columns: 1fr 1fr; gap: 32px; } .steps-grid::before { display: none; } }
@media (max-width: 460px) { .steps-grid { grid-template-columns: 1fr; } }
.step { text-align: center; padding: 0 14px; position: relative; }
.step__num { width: 72px; height: 72px; background: var(--green); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 26px; font-weight: 900; color: #fff; margin: 0 auto 20px; position: relative; z-index: 1; box-shadow: 0 4px 18px rgba(45,90,39,0.4); }
.step h3 { font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 10px; }
.step p { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.7; }

/* ── Cities ── */
.cities-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 44px; }
@media (max-width: 680px) { .cities-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 440px) { .cities-grid { grid-template-columns: 1fr; } }
.city-card { background: #fff; border: 1px solid var(--silver-lt); border-radius: 12px; padding: 24px 18px; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 6px; transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s; }
.city-card:hover { box-shadow: 0 8px 24px rgba(27,42,74,0.1); transform: translateY(-3px); border-color: var(--green); }
.city-card__icon { font-size: 30px; }
.city-card__name { font-size: 17px; font-weight: 800; color: var(--navy); }
.city-card__state { font-size: 12px; color: var(--silver); text-transform: uppercase; letter-spacing: 0.1em; }
.city-card__badge { font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; background: var(--green-pale); color: var(--green); padding: 3px 10px; border-radius: 20px; margin: 4px 0 10px; }
.city-card__link { font-size: 12px; color: var(--text-lt); margin-top: 6px; transition: color 0.15s; }
.city-card__link:hover { color: var(--green); }

/* ── Benefits ── */
.benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 44px; }
@media (max-width: 680px) { .benefits-grid { grid-template-columns: 1fr; } }
.benefit-card { background: var(--off-white); border: 1px solid var(--silver-lt); border-radius: 10px; padding: 22px; }
.benefit-card h4 { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 7px; text-transform: none; letter-spacing: 0; }
.benefit-card p { font-size: 13px; color: var(--text-mid); line-height: 1.65; }

/* ── Pricing ── */
.pricing-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 800px; margin: 44px auto 0; }
@media (max-width: 560px) { .pricing-cards { grid-template-columns: 1fr; } }
.price-card { background: #fff; border: 1px solid var(--silver-lt); border-radius: 16px; padding: 34px 28px; text-align: center; position: relative; box-shadow: 0 4px 16px rgba(27,42,74,0.06); }
.price-card--featured { border-color: var(--green); box-shadow: 0 8px 32px rgba(45,90,39,0.2); transform: scale(1.02); }
.price-card__badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--green); color: #fff; font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 5px 14px; border-radius: 20px; white-space: nowrap; }
.price-card h3 { font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.price-card__amount { font-size: 50px; font-weight: 900; color: var(--navy); line-height: 1; margin: 14px 0 4px; }
.price-card__amount sup { font-size: 24px; vertical-align: super; }
.price-card__note { font-size: 13px; color: var(--text-lt); margin-bottom: 22px; }
.price-card__list { list-style: none; text-align: left; display: flex; flex-direction: column; gap: 9px; }
.price-card__list li { font-size: 14px; color: var(--text-mid); display: flex; align-items: flex-start; gap: 8px; }
.price-card__list li::before { content: '\2713'; color: var(--green); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.pricing-total { background: var(--navy); border-radius: 12px; padding: 28px 32px; text-align: center; max-width: 800px; margin: 20px auto 0; }
.pricing-total p { color: rgba(255,255,255,0.65); font-size: 14px; margin-bottom: 8px; }
.pricing-total__num { font-size: 28px; font-weight: 900; color: #6ecf6a; }
.pricing-total__note { font-size: 13px; color: rgba(255,255,255,0.45); margin-top: 8px; }

/* ── CTA Band ── */
.cta-band { background: var(--green); padding: 72px 0; text-align: center; }
.cta-band h2 { color: #fff; font-size: clamp(24px, 4vw, 40px); font-weight: 900; margin-bottom: 12px; }
.cta-band p { color: rgba(255,255,255,0.8); font-size: 16px; margin-bottom: 32px; }
.cta-band__btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── Contact ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: start; margin-top: 48px; }
@media (max-width: 680px) { .contact-grid { grid-template-columns: 1fr; gap: 40px; } }
.contact-info { display: flex; flex-direction: column; gap: 24px; }
.contact-item { display: flex; gap: 14px; align-items: flex-start; }
.contact-item__icon { width: 46px; height: 46px; flex-shrink: 0; background: var(--green-pale); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 20px; }
.contact-item h4 { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-lt); margin-bottom: 4px; }
.contact-item a { font-size: 15px; color: var(--navy); font-weight: 500; display: block; text-decoration: none; }
.contact-item a:hover { color: var(--green); }
.contact-item p { font-size: 13px; color: var(--text-lt); margin-top: 2px; }

/* ── Form ── */
.form-box { background: var(--off-white); border: 1px solid var(--silver-lt); border-radius: 14px; padding: 36px; }
.form-box h3 { font-size: 20px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.form-box__sub { font-size: 14px; color: var(--text-mid); margin-bottom: 22px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 460px) { .form-row { grid-template-columns: 1fr; } }
.form-field { display: flex; flex-direction: column; gap: 5px; margin-bottom: 14px; }
.form-field label { font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-mid); }
.form-field input,
.form-field select {
  width: 100%; background: #fff; border: 1px solid var(--silver-lt); border-radius: 7px;
  color: var(--text); font-family: inherit; font-size: 15px; padding: 11px 13px; outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-field input::placeholder { color: var(--silver); }
.form-field input:focus, .form-field select:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(45,90,39,0.1); }
.form-submit { border: none; cursor: pointer; margin-top: 4px; font-family: inherit; }
.form-success { display: none; background: var(--green-pale); border: 1px solid rgba(45,90,39,0.25); color: var(--green); padding: 14px; border-radius: 7px; font-size: 14px; font-weight: 600; margin-bottom: 14px; text-align: center; }

/* ── Footer ── */
.site-footer { background: #111d33; padding: 52px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 36px; margin-bottom: 36px; }
@media (max-width: 620px) { .footer-grid { grid-template-columns: 1fr; gap: 28px; } }
.footer-brand p { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.7; max-width: 260px; margin-top: 8px; }
.footer-logo { font-size: 17px; font-weight: 900; color: #fff; display: block; margin-bottom: 2px; }
.footer-logo span { color: #6ecf6a; }
.footer-email { display: block; font-size: 13px; color: rgba(255,255,255,0.5); margin-top: 10px; text-decoration: none; }
.footer-email:hover { color: #6ecf6a; }
.footer-col h4 { font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 14px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-col ul li a { font-size: 13px; color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.15s; }
.footer-col ul li a:hover { color: #6ecf6a; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.35); }

/* ── Responsive ── */
@media (max-width: 580px) {
  .hero { padding: 70px 0 60px; }
  .hero__stats { gap: 24px; }
  .section { padding: 60px 0; }
  .form-box { padding: 24px 18px; }
  .cta-band { padding: 56px 0; }
}


/* ── Logo: image + text side by side ── */
.site-logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.site-logo-img {
  height: 40px;
  width: auto;
  display: block;
  flex-shrink: 0;
}
.site-logo {
  font-size: 18px;
  font-weight: 900;
  color: var(--navy);
  white-space: nowrap;
  line-height: 1;
}
.site-logo span { color: var(--green); }

/* ── White outline button (Schedule a Call) ── */
.btn--white-outline {
  background: #ffffff;
  color: #1B2A4A;
  border-color: #ffffff;
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.btn--white-outline:hover {
  background: #f0f4ff;
  color: #1B2A4A;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}
