:root{
  --ink: #111827;
  --slate: #1f2937;
  --muted: #4b5563;          /* was #6b7280 — darker for readable body text */
  --bg: #faf8f5;             /* was #f3f4f6 — warm off-white */
  --card: #ffffff;
  --trust: #b45309;          /* brand accent for badges, icons, decoration */
  --cta: #9a3412;            /* deeper CTA button color — stands out from decoration */
  --calm: #374151;
  --soft: #e0ddd8;           /* was #d1d5db — warmer borders */
  --accent: #92400e;
  --success: #166534;
  --hint: #9ca3af;           /* captions, disclaimers, truly secondary text */
}

/* ---------- Base / Typography ---------- */
html { scroll-behavior: smooth; }
body {
  color: var(--ink);
  background: var(--bg);
  padding-top: 76px;
  font-size: 1.25rem;
  line-height: 1.65;
}

h1, .h1 { font-size: 2.25rem; }
h2, .h2 { font-size: 1.85rem; }
h3, .h3 { font-size: 1.55rem; }
h4, .h4 { font-size: 1.45rem; }
h5, .h5 { font-size: 1.4rem; }

p, li, .accordion-body, td, th { font-size: 1.2rem; }

@media (min-width: 992px){
  h1, .h1 { font-size: 2.75rem; }
  h2, .h2 { font-size: 2.25rem; }
  h3, .h3 { font-size: 1.75rem; }
}

/* ---------- Navbar ---------- */
.navbar {
  background: rgba(255,253,250,.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--soft);
}
.navbar .nav-link {
  font-size: 1.1rem;
  padding: .45rem .85rem;
  border-radius: 8px;
  transition: background .2s ease, color .2s ease, font-weight .2s ease;
}
.navbar .nav-link:hover,
.navbar .nav-link:focus {
  background: var(--cta);
  color: #fff;
  font-weight: 600;
}

.brand-dot{
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--trust);
  display: inline-block;
  margin-right: .5rem;
  box-shadow: 0 0 0 4px rgba(180,83,9,.18);
}

/* ---------- Hero full-width carousel ---------- */
.hero-carousel-wrap{
  position: relative;
}

.hero-carousel-wrap .carousel-item img{
  object-fit: cover;
  height: calc(100vh - 76px);
  min-height: 480px;
  width: 100%;
  filter: brightness(.55);
}
@media (max-width: 991px){
  .hero-carousel-wrap .carousel-item img{
    height: 75vh;
    min-height: 400px;
  }
}
@media (max-width: 575px){
  .hero-carousel-wrap .carousel-item img{
    height: 100vh;
    min-height: 520px;
  }
}

.hero-overlay{
  position: absolute;
  inset: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  pointer-events: none;
  padding: 2rem 0;
}
.hero-overlay .container{
  pointer-events: auto;
}

.hero-title{
  letter-spacing: -0.02em;
  line-height: 1.08;
  text-shadow: 0 2px 20px rgba(0,0,0,.4);
}

.hero-accent{
  color: #f59e0b;
  transition: opacity .4s ease;
}
.hero-accent.fade-out{ opacity: 0; }
.hero-accent.fade-in{ opacity: 1; }

.testimonial-card .review-text,
.testimonial-card .review-author{
  transition: opacity 1s cubic-bezier(.4,0,.2,1), transform 1s cubic-bezier(.4,0,.2,1), filter 1s ease;
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}
.testimonial-card.fading .review-text,
.testimonial-card.fading .review-author{
  opacity: 0;
  transform: translateY(8px);
  filter: blur(3px);
}

.hero-lead{
  color: rgba(255,255,255,.90);
  font-size: 1.25rem;
  max-width: 540px;
  text-shadow: 0 1px 8px rgba(0,0,0,.3);
}

.hero-info-card{
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 14px;
  padding: .75rem 1rem;
  color: #fff;
}
.hero-info-card .small, .hero-info-card div { font-size: 1.05rem; }

.hero-carousel-wrap .carousel-control-prev,
.hero-carousel-wrap .carousel-control-next{
  z-index: 11;
  width: 5%;
}

.lead { color: var(--slate); font-size: 1.25rem; }

.pill{
  background: rgba(180,83,9,.65);
  color: #fff;
  border: 1px solid rgba(255,255,255,.25);
  font-weight: 600;
  font-size: 1.05rem;
}

.text-primary { color: var(--trust) !important; }
.btn-outline-secondary { border-color: rgba(17,24,39,.25); color: #111827; }
.btn-outline-secondary:hover { background: rgba(17,24,39,.06); border-color: rgba(17,24,39,.35); }

/* ---------- Section spacing ---------- */
.section-title{
  letter-spacing: -0.01em;
}

/* ---------- Cards ---------- */
.card{
  border: 1px solid var(--soft);
  box-shadow: 0 12px 34px rgba(100,80,50,.08);
  border-radius: 18px;
}

/* ---------- Icon badges & checklist ---------- */
.icon-badge{
  width: 42px; height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(180,83,9,.07);
  border: 1px solid rgba(180,83,9,.18);
  color: var(--trust);
  flex: 0 0 auto;
  font-size: 1rem;
}

.checklist{
  list-style: none;
  padding: 0;
  margin: 0;
}
.checklist li{
  display: flex;
  align-items: center;
  gap: .65rem;
  padding: .45rem 0;
  font-size: 1.2rem;
  color: var(--slate);
}
.checklist .icon-badge{
  width: 30px; height: 30px;
  border-radius: 8px;
  font-size: .9rem;
}

/* ---------- Buttons ---------- */
.btn-trust{
  background: var(--cta);
  border-color: var(--cta);
}
.btn-trust:hover{
  background: #7c2d12;
  border-color: #7c2d12;
}

.btn-outline-trust{
  border-color: rgba(180,83,9,.35);
  color: var(--trust);
}
.btn-outline-trust:hover{
  background: rgba(180,83,9,.10);
  border-color: rgba(180,83,9,.45);
  color: var(--trust);
}

/* ---------- Step numbers (How it works) ---------- */
.step-number{
  width: 52px; height: 52px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(180,83,9,.10);
  border: 2px solid rgba(180,83,9,.25);
  color: var(--trust);
  font-size: 1.35rem;
  font-weight: 800;
  margin: 0 auto;
}

/* ---------- Options: PSI badges ---------- */
.psi-badge{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(180,83,9,.10);
  border: 2px solid rgba(180,83,9,.22);
  color: var(--trust);
  font-weight: 800;
  font-size: .85rem;
  flex: 0 0 auto;
}

/* ---------- Options: Color swatches ---------- */
.color-swatch{
  display: inline-block;
  width: 38px; height: 38px;
  border-radius: 10px;
  border: 2px solid var(--soft);
  cursor: default;
}

/* ---------- Calculator ---------- */
#calculator .form-control{
  border: 2px solid #9ca3af;
  border-radius: 10px;
}
#calculator .form-control:focus{
  border-color: var(--trust);
  box-shadow: 0 0 0 3px rgba(180,83,9,.15);
}

.calc-result-box{
  background: rgba(180,83,9,.06);
  border: 1px solid rgba(180,83,9,.18);
}

/* ---------- Gallery grid ---------- */
.gallery-grid a.gallery-thumb{
  display: block;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
}
.gallery-thumb img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .25s ease, filter .25s ease;
}
.gallery-thumb:hover img{
  transform: scale(1.05);
  filter: brightness(.85);
}
.gallery-thumb::after{
  content: '\F52A'; /* bi-zoom-in */
  font-family: 'bootstrap-icons';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #fff;
  background: rgba(0,0,0,.25);
  opacity: 0;
  transition: opacity .25s ease;
  border-radius: 14px;
}
.gallery-thumb:hover::after{
  opacity: 1;
}

#galleryModal .modal-body{
  background: #111;
}

/* ---------- Why image ---------- */
.why-img{ aspect-ratio: 4/3; object-fit: cover; }

/* ---------- Helpers ---------- */
.small-muted{ color: var(--muted); font-size: 1.2rem; }
.text-hint{ color: var(--hint); font-size: 1.1rem; }

/* ---------- Footer ---------- */
footer{
  border-top: 1px solid var(--soft);
  background: #ffffff;
}
footer .small{ font-size: 1.05rem; }
