
:root{
  --paper:#f7f2ea;
  --ink:#302823;
  --red:#a9171b;
  --black:#111111;
  --soft:#efeeee;
  --line:#ddd7cf;
  --white:#ffffff;
  --green:#647563;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  background:var(--paper);
  color:var(--ink);
  font-family:Arial,Helvetica,sans-serif;
  line-height:1.48;
}
a{color:inherit}
.top-promo{
  background:var(--green);
  color:#fff;
  padding:6px 16px;
  text-align:center;
  font-size:10px;
  font-weight:900;
  letter-spacing:.035em;
}
.utility{
  background:#30261f;
  color:#fff;
  text-align:center;
  padding:7px 16px;
  font-size:10px;
}
.wrap{
  max-width:950px;
  margin:0 auto;
  padding:0 28px;
}
.kicker{
  color:var(--red);
  font-size:10px;
  line-height:1.2;
  letter-spacing:.15em;
  text-transform:uppercase;
  font-weight:900;
}
.hero{
  display:grid;
  grid-template-columns:1.08fr .92fr;
  gap:52px;
  align-items:center;
  padding:72px 0 76px;
}
.hero h1{
  font-size:55px;
  line-height:.98;
  letter-spacing:-.045em;
  margin:10px 0 8px;
  font-weight:900;
}
.hero .subhead{
  font-size:22px;
  line-height:1.08;
  font-weight:900;
  margin:0 0 14px;
}
.hero p{
  font-size:15px;
  margin:0 0 20px;
  max-width:520px;
}
.hero img{
  width:100%;
  aspect-ratio:1.08/1;
  object-fit:cover;
  border-radius:8px;
  display:block;
}
.actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}
.btn{
  display:inline-block;
  text-decoration:none;
  padding:12px 18px;
  border-radius:4px;
  font-size:12px;
  font-weight:900;
  border:1px solid #151515;
}
.btn.red{background:var(--red);color:#fff;border-color:var(--red)}
.btn.black{background:#111;color:#fff}
.btn.white{background:#fff;color:#111}
.promo-link{
  display:inline-block;
  margin-top:15px;
  color:var(--red);
  font-size:12px;
  font-weight:900;
  text-decoration:underline;
  text-underline-offset:3px;
}
.section{
  padding:10px 0 58px;
}
.section h2{
  font-size:34px;
  line-height:1.06;
  letter-spacing:-.035em;
  margin:10px 0 22px;
}
.option-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:12px;
}
.option{
  background:#fff;
  border:1px solid var(--line);
  border-radius:7px;
  padding:18px;
  min-height:190px;
  box-shadow:0 2px 8px rgba(0,0,0,.03);
}
.option h3{
  font-size:16px;
  margin:0 0 10px;
}
.option p{
  font-size:12px;
  margin:0 0 13px;
}
.option a{
  color:var(--red);
  font-size:11px;
  font-weight:900;
  text-decoration:none;
}
.local{
  background:#efeeee;
  border-radius:7px;
  padding:28px;
  margin:4px 0 34px;
}
.local h2{
  font-size:32px;
  margin:9px 0 12px;
}
.local p{
  font-size:13px;
  margin:0 0 10px;
}
.problem{
  background:#101010;
  color:#fff;
  border-radius:7px;
  padding:30px 28px;
  margin-bottom:50px;
}
.problem h2{
  font-size:32px;
  margin:8px 0 22px;
}
.problem-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:8px;
}
.problem-card{
  background:#1c1c1c;
  border:1px solid #313131;
  border-radius:5px;
  padding:15px;
  min-height:90px;
}
.problem-card h3{
  font-size:13px;
  margin:0 0 4px;
}
.problem-card p{
  margin:0;
  font-size:10px;
  color:#eee;
}
.why-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:9px;
}
.why{
  background:#fff;
  border:1px solid var(--line);
  border-top:3px solid var(--red);
  border-radius:5px;
  padding:16px;
  min-height:145px;
}
.why h3{
  font-size:14px;
  margin:0 0 8px;
}
.why p{
  font-size:11px;
  margin:0;
}
.one-day{
  background:#efeeee;
  border-left:4px solid var(--red);
  border-radius:6px;
  padding:25px 28px;
  margin:42px 0 56px;
}
.one-day h2{
  font-size:30px;
  margin:8px 0 10px;
}
.one-day p{
  font-size:12px;
  margin:0 0 10px;
}
.one-day .terms{
  font-size:9px;
  color:#6f6760;
}
.gallery{
  display:grid;
  grid-template-columns:1fr 1fr 1fr;
  gap:12px;
  margin-top:18px;
}
.gallery img{
  width:100%;
  height:235px;
  object-fit:cover;
  border-radius:7px;
  display:block;
}
.final-cta{
  background:#111;
  color:#fff;
  border-radius:7px;
  padding:28px;
  display:flex;
  justify-content:space-between;
  gap:20px;
  align-items:center;
  margin:0 0 40px;
}
.final-cta h2{
  font-size:30px;
  margin:0 0 7px;
}
.final-cta p{
  font-size:12px;
  margin:0;
  max-width:580px;
}
.footer{
  background:#111;
  color:#fff;
  padding:25px 0;
  font-size:11px;
}
@media(max-width:780px){
  .hero{grid-template-columns:1fr;gap:28px;padding-top:46px}
  .hero h1{font-size:44px}
  .option-grid,.problem-grid,.why-grid{grid-template-columns:1fr}
  .gallery{grid-template-columns:1fr}
  .gallery img{height:auto}
  .final-cta{display:block}
  .final-cta .actions{margin-top:16px}
}


.value-block{
  background:#f8f5ef;
  border:1px solid #d8d2ca;
  border-radius:8px;
  padding:24px 26px;
  margin:-22px 0 58px;
}
.value-grid{
  display:grid;
  grid-template-columns:1.4fr .6fr .6fr;
  gap:16px;
  align-items:center;
}
.value-block h2{
  font-size:34px;
  line-height:1.05;
  margin:8px 0 24px;
}
.value-stat{
  background:#efeeee;
  border-radius:7px;
  padding:20px 14px;
  text-align:center;
}
.value-stat b{
  display:block;
  font-size:30px;
  line-height:1;
  margin-bottom:8px;
}
.value-stat span{
  display:block;
  font-size:10px;
  line-height:1.3;
}
.value-link{
  color:var(--red);
  font-size:12px;
  font-weight:900;
  text-decoration:none;
}
@media(max-width:780px){
  .value-grid{grid-template-columns:1fr}
}


/* Permanent Flower Mound-style customer testimonial section */
.customer-reviews{
  padding:4px 0 58px;
}
.customer-reviews h2{
  font-size:35px;
  line-height:1.06;
  letter-spacing:-.035em;
  margin:10px 0 22px;
}
.review-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:12px;
}
.review-card{
  background:#111;
  color:#fff;
  border-radius:9px;
  min-height:342px;
  padding:24px 22px 20px;
  display:flex;
  flex-direction:column;
}
.review-card.red{
  background:#ae191d;
}
.review-stars{
  font-size:13px;
  letter-spacing:3px;
  margin:34px 0 18px;
  font-weight:900;
}
.review-quote{
  font-size:24px;
  line-height:1.0;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:-.025em;
}
.review-name{
  margin-top:auto;
  background:#2d251f;
  min-height:118px;
  padding:27px 18px;
  display:flex;
  align-items:center;
  font-size:12px;
  font-weight:900;
}
.read-reviews{
  text-align:center;
  margin-top:18px;
}
.read-reviews a{
  color:var(--red);
  font-size:12px;
  font-weight:900;
  text-decoration:none;
}
.read-reviews a:hover{
  text-decoration:underline;
  text-underline-offset:3px;
}
@media(max-width:780px){
  .review-grid{grid-template-columns:1fr}
  .review-card{min-height:270px}
}


/* ===== AAHR GLOBAL HEADER / FOOTER ===== */
.global-site-header{
  background:#f7f2ea;
  border-bottom:1px solid #ddd7cf;
}
.global-header-inner{
  max-width:1040px;
  margin:0 auto;
  padding:12px 28px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:28px;
}
.global-logo{
  flex:0 0 auto;
  display:block;
  text-decoration:none;
}
.global-logo img{
  width:82px;
  height:auto;
  display:block;
}
.global-nav{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:24px;
  flex-wrap:wrap;
}
.global-nav a{
  color:#2f2823;
  text-decoration:none;
  font-size:12px;
  font-weight:700;
  white-space:nowrap;
}
.global-nav a:hover{
  color:#a9171b;
}
.global-nav .book-nav{
  background:#a9171b;
  color:#fff;
  padding:10px 12px;
  border-radius:4px;
}
.global-nav .book-nav:hover{
  color:#fff;
  background:#881216;
}
.global-footer{
  background:#30261f;
  color:#fff;
  margin-top:0;
}
.global-footer-inner{
  max-width:1040px;
  margin:0 auto;
  padding:48px 28px 42px;
  display:grid;
  grid-template-columns:1.5fr .8fr .8fr .8fr;
  gap:42px;
}
.global-footer-logo{
  width:155px;
  height:auto;
  display:block;
  margin-bottom:18px;
}
.global-footer h3{
  color:#fff;
  font-size:14px;
  margin:0 0 15px;
}
.global-footer p{
  color:#fff;
  font-size:12px;
  line-height:1.65;
  margin:0 0 12px;
}
.global-footer a{
  display:block;
  color:#fff;
  text-decoration:none;
  font-size:12px;
  margin:0 0 10px;
}
.global-footer a:hover{
  text-decoration:underline;
  text-underline-offset:3px;
}
.global-footer-bottom{
  border-top:1px solid rgba(255,255,255,.17);
  max-width:1040px;
  margin:0 auto;
  padding:16px 28px 22px;
  display:flex;
  justify-content:space-between;
  gap:20px;
  flex-wrap:wrap;
  color:#ddd2ca;
  font-size:10px;
}
.global-footer-bottom a{
  display:inline;
  font-size:10px;
  color:#ddd2ca;
}
@media(max-width:900px){
  .global-header-inner{
    align-items:flex-start;
  }
  .global-nav{
    gap:14px;
  }
  .global-footer-inner{
    grid-template-columns:1fr 1fr;
  }
}
@media(max-width:700px){
  .global-header-inner{
    display:block;
  }
  .global-logo img{
    margin-bottom:14px;
  }
  .global-nav{
    justify-content:flex-start;
  }
}
@media(max-width:520px){
  .global-footer-inner{
    grid-template-columns:1fr;
  }
}


/* AAHR Trustindex placement system — v1.2.1 */
.aahr-ti-hero{margin:18px 0 14px;min-height:42px;display:flex;align-items:center;justify-content:flex-start;position:relative;z-index:1}
.aahr-ti-slider{margin-top:22px;min-height:190px;position:relative;z-index:1}
.aahr-ti-cta-trust{margin-top:18px;min-height:38px;display:flex;align-items:center;justify-content:flex-start}
.aahr-ti-footer{margin-top:18px;min-height:54px;display:flex;align-items:center;justify-content:flex-start}
.aahr-ti-review-section{overflow:visible}
@media (max-width:760px){
  .aahr-ti-hero,.aahr-ti-cta-trust,.aahr-ti-footer{justify-content:center}
  .aahr-ti-hero{margin:16px 0 12px}
  .aahr-ti-slider{margin-top:18px;min-height:220px}
  .aahr-ti-cta-trust{margin-top:16px}
  .aahr-ti-footer{margin-top:16px}
}
