/* ===================================================
   Restore Local Houston — theme.css
   All styles compiled inline. No build step needed.
   =================================================== */

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

:root {
  --navy:     #0a1628;
  --navy-mid: #0f2040;
  --blue:     #1a4a8c;
  --water:    #2290d4;
  --ice:      #a8d8f0;
  --orange:   #e05c1a;
  --orange-lt:#f07030;
  --white:    #f5f7fa;
  --gray:     #8a9ab0;
  --light:    #d4dde8;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Lora', Georgia, serif;
  background: var(--navy);
  color: var(--white);
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

/* WordPress resets */
.wp-site-blocks, .entry-content, .page, .post { padding: 0 !important; margin: 0 !important; max-width: none !important; }
.wp-block-post-content { margin: 0 !important; }
img { max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }

/* ── Typography ── */
.rlh-label {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--water);
  margin-bottom: 10px;
}
.rlh-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(32px, 5vw, 58px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -.01em;
  line-height: .95;
  margin-bottom: 14px;
}
.rlh-sub {
  color: var(--gray);
  font-size: 16px;
  line-height: 1.75;
  max-width: 560px;
  margin-bottom: 44px;
}

/* ── Buttons ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 15px 32px;
  border-radius: 3px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background .2s, transform .2s, box-shadow .2s;
  box-shadow: 0 4px 20px rgba(224,92,26,.4);
}
.btn-primary:hover { background: var(--orange-lt); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(224,92,26,.5); color: #fff; }
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 13px 30px;
  border-radius: 3px;
  border: 2px solid rgba(168,216,240,.4);
  text-decoration: none;
  transition: border-color .2s, color .2s;
}
.btn-secondary:hover { border-color: var(--ice); color: var(--ice); }

/* ── Emergency Banner ── */
.rlh-banner {
  background: var(--orange);
  text-align: center;
  padding: 10px 20px;
  position: sticky;
  top: 0;
  z-index: 999;
  animation: pulseBg 2s ease-in-out infinite;
}
.rlh-banner a {
  color: #fff;
  text-decoration: none;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(13px, 2.5vw, 17px);
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.rlh-banner .phone { font-size: clamp(17px, 3.5vw, 24px); font-weight: 900; margin-left: 8px; }

/* ── Nav ── */
.rlh-nav {
  background: rgba(10,22,40,.97);
  backdrop-filter: blur(8px);
  padding: 13px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(34,144,212,.18);
}
.rlh-logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(16px, 2.5vw, 24px);
  letter-spacing: -.02em;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
}
.rlh-logo span { color: var(--water); }
.rlh-nav .btn-primary { font-size: 14px; padding: 10px 20px; }

/* ── Hero ── */
.rlh-hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: 80px 5% 60px;
  overflow: hidden;
}
.rlh-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(26,74,140,.35) 0%, transparent 70%),
    radial-gradient(ellipse 50% 80% at 10% 80%, rgba(34,144,212,.15) 0%, transparent 60%),
    linear-gradient(160deg, #0a1628 0%, #0d1e38 50%, #071220 100%);
}
.rlh-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(34,144,212,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(34,144,212,.06) 1px, transparent 1px);
  background-size: 60px 60px;
}
.rlh-wave {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 100px;
  background: linear-gradient(180deg, transparent 0%, rgba(34,144,212,.07) 100%);
  clip-path: polygon(0 40%,15% 20%,30% 45%,45% 15%,60% 40%,75% 10%,90% 35%,100% 20%,100% 100%,0 100%);
  animation: wave 8s ease-in-out infinite;
}
.rlh-hero-content { position: relative; z-index: 2; max-width: 700px; }
.rlh-hero-tag {
  display: inline-block;
  background: rgba(34,144,212,.12);
  border: 1px solid rgba(34,144,212,.38);
  color: var(--ice);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 2px;
  margin-bottom: 20px;
  animation: fadeUp .6s ease both;
}
.rlh-hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(44px, 7.5vw, 96px);
  font-weight: 900;
  line-height: .92;
  letter-spacing: -.02em;
  text-transform: uppercase;
  animation: fadeUp .6s .1s ease both;
}
.rlh-hero h1 em  { color: var(--water); font-style: normal; display: block; }
.rlh-hero h1 .acc { color: var(--orange); }
.rlh-hero-sub {
  font-size: clamp(15px, 2vw, 18px);
  color: var(--light);
  margin: 22px 0 36px;
  line-height: 1.7;
  max-width: 540px;
  animation: fadeUp .6s .2s ease both;
}
.rlh-hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: fadeUp .6s .3s ease both;
}
.rlh-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 48px;
  animation: fadeUp .6s .4s ease both;
}
.rlh-stat { border-left: 3px solid var(--water); padding-left: 14px; }
.rlh-stat-num { font-family: 'Barlow Condensed', sans-serif; font-size: 34px; font-weight: 900; color: var(--ice); line-height: 1; }
.rlh-stat-lbl { font-size: 12px; color: var(--gray); letter-spacing: .05em; margin-top: 2px; }

/* ── Trust Bar ── */
.rlh-trust {
  background: var(--navy-mid);
  border-top: 1px solid rgba(34,144,212,.18);
  border-bottom: 1px solid rgba(34,144,212,.18);
  padding: 18px 5%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 28px 40px;
}
.rlh-trust-item {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--light);
}
.rlh-trust-item .ti { color: var(--water); font-size: 18px; }

/* ── Sections ── */
.rlh-section { padding: 80px 5%; }
.rlh-section-dark { background: var(--navy); }
.rlh-section-mid  { background: var(--navy-mid); border-top: 1px solid rgba(34,144,212,.12); }

/* ── Services Grid ── */
.rlh-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2px;
}
.rlh-card {
  background: var(--navy-mid);
  padding: 36px 28px;
  border: 1px solid rgba(34,144,212,.1);
  position: relative;
  overflow: hidden;
  transition: background .25s, transform .25s;
}
.rlh-card:hover { background: #0d1e38; transform: translateY(-3px); }
.rlh-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--water), #1e6dc7);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s;
}
.rlh-card:hover::before { transform: scaleX(1); }
.rlh-card-num {
  position: absolute;
  right: 18px; top: 14px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 68px;
  font-weight: 900;
  color: var(--water);
  opacity: .05;
  line-height: 1;
}
.rlh-card-icon { font-size: 32px; margin-bottom: 16px; display: block; }
.rlh-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 24px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .02em;
  margin-bottom: 11px;
  color: var(--white);
}
.rlh-card p { color: var(--gray); font-size: 14px; line-height: 1.75; }
.rlh-card ul { list-style: none; margin-top: 14px; display: flex; flex-direction: column; gap: 7px; }
.rlh-card ul li { color: var(--light); font-size: 14px; display: flex; align-items: flex-start; gap: 7px; }
.rlh-card ul li::before { content: '→'; color: var(--water); font-weight: 700; flex-shrink: 0; }
.rlh-card-featured { background: rgba(224,92,26,.07) !important; border-color: rgba(224,92,26,.22) !important; }
.rlh-card-featured .rlh-card-num { color: var(--orange); }

/* ── Why Us ── */
.rlh-why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
@media(max-width:800px){ .rlh-why-grid { grid-template-columns: 1fr; gap: 40px; } }
.rlh-why-list { list-style: none; display: flex; flex-direction: column; gap: 22px; margin-top: 28px; }
.rlh-why-item { display: flex; gap: 16px; align-items: flex-start; }
.rlh-why-bullet {
  width: 42px; height: 42px; flex-shrink: 0;
  background: rgba(34,144,212,.1);
  border: 1px solid rgba(34,144,212,.28);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}
.rlh-why-item h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 17px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--white);
  margin-bottom: 4px;
}
.rlh-why-item p { color: var(--gray); font-size: 14px; line-height: 1.65; }

/* Cert box */
.rlh-cert-box {
  background: var(--navy);
  border: 1px solid rgba(34,144,212,.2);
  border-radius: 4px;
  padding: 34px;
}
.rlh-cert-box h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--ice);
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(34,144,212,.18);
}
.rlh-cert-list { list-style: none; display: flex; flex-direction: column; gap: 13px; }
.rlh-cert-list li { display: flex; align-items: center; gap: 11px; color: var(--light); font-size: 14px; }
.rlh-badge {
  background: rgba(34,144,212,.13);
  border: 1px solid rgba(34,144,212,.3);
  color: var(--ice);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  padding: 3px 7px;
  border-radius: 2px;
  text-transform: uppercase;
  white-space: nowrap;
}

/* ── Contact Section ── */
.rlh-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  max-width: 1100px;
  margin: 0 auto;
}
@media(max-width:800px){ .rlh-contact-grid { grid-template-columns: 1fr; } }
.rlh-contact-info p { color: var(--gray); font-size: 15px; line-height: 1.75; margin: 14px 0 32px; }
.rlh-contact-rows { display: flex; flex-direction: column; gap: 18px; margin-bottom: 30px; }
.rlh-contact-row { display: flex; align-items: center; gap: 14px; }
.rlh-contact-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: rgba(34,144,212,.09);
  border: 1px solid rgba(34,144,212,.22);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}
.rlh-contact-row .lbl {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gray);
}
.rlh-contact-row a, .rlh-contact-row span {
  display: block;
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
}
.rlh-contact-row a:hover { color: var(--ice); }
.rlh-avail {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(34,212,120,.09);
  border: 1px solid rgba(34,212,120,.22);
  padding: 10px 16px;
  border-radius: 3px;
}
.rlh-avail .dot {
  width: 8px; height: 8px;
  background: #22d478;
  border-radius: 50%;
  animation: pulseDot 1.5s ease-in-out infinite;
}
.rlh-avail span {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #22d478;
}

/* Form box */
.rlh-form-box {
  background: var(--navy-mid);
  border: 1px solid rgba(34,144,212,.2);
  border-radius: 4px;
  padding: 38px 36px;
}
@media(max-width:500px){ .rlh-form-box { padding: 24px 18px; } }
.rlh-form-box h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 26px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.rlh-form-box .fsub { color: var(--gray); font-size: 13px; margin-bottom: 24px; }
.rlh-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media(max-width:480px){ .rlh-form-row { grid-template-columns: 1fr; } }
.rlh-field { display: flex; flex-direction: column; gap: 5px; margin-bottom: 12px; }
.rlh-field label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gray);
}
.rlh-field input,
.rlh-field select,
.rlh-field textarea {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(34,144,212,.22);
  border-radius: 3px;
  color: var(--white);
  font-family: 'Lora', serif;
  font-size: 14px;
  padding: 11px 13px;
  outline: none;
  transition: border-color .2s, background .2s;
  width: 100%;
}
.rlh-field input::placeholder,
.rlh-field textarea::placeholder { color: rgba(138,154,176,.55); }
.rlh-field input:focus,
.rlh-field select:focus,
.rlh-field textarea:focus {
  border-color: var(--water);
  background: rgba(34,144,212,.05);
}
.rlh-field select option { background: var(--navy-mid); }
.rlh-field textarea { resize: vertical; min-height: 85px; }
.rlh-submit {
  width: 100%;
  background: var(--orange);
  color: #fff;
  border: none;
  padding: 15px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 3px;
  transition: background .2s, transform .2s;
  margin-top: 6px;
  box-shadow: 0 4px 16px rgba(224,92,26,.3);
}
.rlh-submit:hover { background: var(--orange-lt); transform: translateY(-1px); }
.rlh-submit:disabled { opacity: .6; cursor: not-allowed; transform: none; }
.rlh-form-note { text-align: center; margin-top: 10px; font-size: 12px; color: var(--gray); }
.rlh-success {
  display: none;
  background: rgba(34,212,120,.09);
  border: 1px solid rgba(34,212,120,.28);
  padding: 16px;
  border-radius: 3px;
  text-align: center;
  color: #22d478;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

/* ── SEO Content ── */
.rlh-seo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin-top: 44px;
}
.rlh-seo-art h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--ice);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 9px;
}
.rlh-seo-art p { color: var(--gray); font-size: 14px; line-height: 1.8; }
.rlh-seo-art p + p { margin-top: 9px; }

/* ── Footer ── */
.rlh-footer {
  background: #060e1a;
  border-top: 1px solid rgba(34,144,212,.14);
  padding: 48px 5% 28px;
}
.rlh-footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 36px;
}
@media(max-width:700px){ .rlh-footer-grid { grid-template-columns: 1fr; } }
.rlh-footer-brand p { color: var(--gray); font-size: 13px; line-height: 1.7; max-width: 280px; margin-top: 10px; }
.rlh-footer-col h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--light);
  margin-bottom: 13px;
}
.rlh-footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.rlh-footer-col ul li a { color: var(--gray); text-decoration: none; font-size: 13px; transition: color .2s; }
.rlh-footer-col ul li a:hover { color: var(--ice); }
.rlh-footer-bottom {
  border-top: 1px solid rgba(34,144,212,.1);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.rlh-footer-bottom p { color: var(--gray); font-size: 12px; }

/* ── Floating phone ── */
.rlh-float {
  position: fixed;
  bottom: 22px; right: 22px;
  z-index: 998;
  background: var(--orange);
  color: #fff;
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  text-decoration: none;
  box-shadow: 0 4px 18px rgba(224,92,26,.6);
  animation: floatPulse 2.5s ease-in-out infinite;
}

/* ── Keyframes ── */
@keyframes pulseBg {
  0%,100%{ background-color: #e05c1a; }
  50%    { background-color: #f07030; }
}
@keyframes wave {
  0%,100%{ transform: translateX(0); }
  50%    { transform: translateX(-20px); }
}
@keyframes fadeUp {
  from { opacity:0; transform:translateY(20px); }
  to   { opacity:1; transform:translateY(0); }
}
@keyframes pulseDot {
  0%,100%{ opacity:1; transform:scale(1); }
  50%    { opacity:.5; transform:scale(1.4); }
}
@keyframes floatPulse {
  0%,100%{ box-shadow:0 4px 18px rgba(224,92,26,.6), 0 0 0 0 rgba(224,92,26,.4); }
  50%    { box-shadow:0 4px 18px rgba(224,92,26,.6), 0 0 0 13px rgba(224,92,26,0); }
}

/* ── Responsive ── */
@media(max-width:600px){
  .rlh-stats { gap: 20px; }
  .rlh-section { padding: 60px 5%; }
  .rlh-hero { min-height: auto; padding: 60px 5% 50px; }
}
