/* ============================================================
   style_06092026_1300.css
   TrioTimber Innovations & Construction Inc.
   Production Stylesheet — All Pages
   Palette: Charcoal #1c2333 · Amber #e8922a · Off-white #f5f3ef
   Fonts: Playfair Display (headings) + Inter (body)
============================================================ */

/* ── CUSTOM PROPERTIES ── */
:root {
  --charcoal:    #1c2333;
  --charcoal-mid:#2d3748;
  --amber:       #e8922a;
  --amber-dark:  #c97a1f;
  --offwhite:    #f5f3ef;
  --white:       #ffffff;
  --dark:        #111827;
  --gray:        #4b5563;
  --border:      #dde3ea;
  --shadow:      0 2px 16px rgba(28,35,51,0.09);
  --shadow-lg:   0 8px 40px rgba(28,35,51,0.18);
  --font-serif:  'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans:   'Inter', Arial, 'Helvetica Neue', sans-serif;
  --section-pad: 80px;
  --ease:        0.22s ease;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  color: var(--dark);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button, input, select, textarea { font-family: var(--font-sans); }

/* ── LAYOUT ── */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 28px;
}
.section       { padding: var(--section-pad) 0; }
.section-light { background: var(--offwhite); }
.section-dark  { background: var(--charcoal); color: var(--white); }
.text-center   { text-align: center; }
.text-center .sub { margin-left: auto; margin-right: auto; }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 { font-family: var(--font-serif); }
.label {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 12px;
}
h1 { font-size: clamp(1.9rem, 4vw, 3rem);    line-height: 1.15; font-weight: 900; }
h2 { font-size: clamp(1.55rem, 3vw, 2.1rem); line-height: 1.25; font-weight: 700; margin-bottom: 1rem; }
h3 { font-size: 1.25rem; line-height: 1.3; font-weight: 700; margin-bottom: 0.6rem; }
.sub {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--gray);
  line-height: 1.8;
  max-width: 640px;
}
.section-dark h1,
.section-dark h2   { color: var(--white); }
.section-dark .sub { color: rgba(255,255,255,0.82); }

/* ── BUTTONS ── */
.btn-primary,
.btn-dark,
.btn-outline,
.btn-outline-w {
  display: inline-block;
  padding: 15px 34px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  border: 2px solid transparent;
  cursor: pointer;
  letter-spacing: 0.04em;
  transition: background var(--ease), color var(--ease),
              border-color var(--ease), transform var(--ease);
}
.btn-primary  { background: var(--amber); color: var(--white); border-color: var(--amber); }
.btn-primary:hover { background: var(--amber-dark); border-color: var(--amber-dark); transform: translateY(-2px); }
.btn-dark     { background: var(--charcoal); color: var(--white); border-color: var(--charcoal); }
.btn-dark:hover { background: var(--charcoal-mid); border-color: var(--charcoal-mid); transform: translateY(-2px); }
.btn-outline  { background: transparent; color: var(--charcoal); border-color: var(--charcoal); }
.btn-outline:hover { background: var(--charcoal); color: var(--white); }
.btn-outline-w { background: transparent; color: var(--white); border-color: var(--white); }
.btn-outline-w:hover { background: var(--white); color: var(--charcoal); }

/* ── TOP BAR ── */
.top-bar {
  background: var(--charcoal);
  color: rgba(255,255,255,0.88);
  text-align: center;
  padding: 9px 16px;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.01em;
}
.top-bar a { color: var(--amber); font-weight: 600; transition: opacity var(--ease); }
.top-bar a:hover { opacity: 0.8; }
.top-bar strong { color: var(--amber); }

/* ── SITE HEADER ── */
.site-header {
  background: var(--white);
  border-bottom: 3px solid var(--charcoal);
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 200;
  transition: box-shadow var(--ease);
}
.site-header.is-scrolled { box-shadow: 0 2px 20px rgba(28,35,51,0.14); }
.hdr-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.logo-img  { height: 56px; width: auto; transition: opacity var(--ease); }
.logo-img:hover { opacity: 0.85; }
.logo-txt {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--charcoal);
}
.logo-txt span { color: var(--amber); }
.hdr-phone { font-family: var(--font-sans); font-size: 0.95rem; font-weight: 600; color: var(--charcoal); }
.hdr-phone a { color: var(--amber); }

/* Desktop nav */
.main-nav ul,
.hdr-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.main-nav a,
.hdr-nav a {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--dark);
  position: relative;
  transition: color var(--ease);
}
.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 2px;
  background: var(--amber);
  transition: width var(--ease);
}
.main-nav a:hover,
.hdr-nav a:hover { color: var(--amber); }
.main-nav a:hover::after { width: 100%; }
.nav-cta,
.hdr-cta {
  background: var(--amber) !important;
  color: var(--white) !important;
  padding: 10px 22px !important;
  font-weight: 600 !important;
  font-size: 0.88rem !important;
  transition: background var(--ease) !important;
}
.nav-cta:hover,
.hdr-cta:hover { background: var(--amber-dark) !important; }
.nav-cta::after { display: none !important; }

/* Mobile hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--charcoal);
  transition: transform var(--ease), opacity var(--ease);
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO ── */
.hero {
  background: var(--charcoal);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.32;
}
.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 740px;
}
.hero-eyebrow {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 18px;
}
.hero h1 { color: var(--white); margin-bottom: 22px; }
.hero h1 em { color: var(--amber); font-style: italic; }
.hero-sub {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  font-weight: 300;
  color: rgba(255,255,255,0.88);
  max-width: 620px;
  margin-bottom: 36px;
  line-height: 1.8;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
.hero-disclaimer {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  margin-top: 12px;
}

/* Hero stats */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.18);
}
.hero-stat .num {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--amber);
  line-height: 1;
}
.hero-stat .lbl {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.4;
  margin-top: 4px;
}
.stat-div { width: 1px; height: 40px; background: rgba(255,255,255,0.22); }

/* Interior Doors hero split */
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-img-panel img { width: 100%; height: 420px; object-fit: cover; }

/* ── STRIPS ── */
.trust-strip { background: var(--amber); padding: 14px 0; }
.trust-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap;
}
.ts-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--white);
}
.ts-item i { font-size: 0.9rem; }

.roi-strip,
.value-strip { background: var(--amber); padding: 20px 0; }
.roi-strip-inner,
.value-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.roi-stat,
.vs-item {
  text-align: center;
  padding: 0 32px;
  border-right: 1px solid rgba(255,255,255,0.3);
}
.roi-stat:last-child,
.vs-item:last-child { border-right: none; }
.roi-num,
.vs-num {
  font-family: var(--font-serif);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.roi-lbl,
.vs-lbl { font-family: var(--font-sans); font-size: 0.76rem; color: rgba(255,255,255,0.85); margin-top: 4px; line-height: 1.4; }

/* ── PAIN CARDS ── */
.empathy-intro,
.pain-intro { max-width: 680px; margin: 0 auto 48px; text-align: center; }
.pain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.pain-card {
  border-left: 5px solid var(--amber);
  padding: 24px 20px;
  background: var(--white);
  box-shadow: var(--shadow);
  transition: box-shadow var(--ease), transform var(--ease);
}
.pain-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.pain-card h3 { color: var(--charcoal); font-size: 1.05rem; margin-bottom: 8px; }
.pain-card p { font-family: var(--font-sans); font-size: 0.9rem; font-weight: 300; color: var(--gray); margin: 0; line-height: 1.7; }

/* Guarantee badge */
.guarantee-wrap { text-align: center; margin-top: 56px; }
.guarantee-badge {
  display: inline-block;
  background: var(--amber);
  border: 5px solid var(--charcoal);
  padding: 32px 48px;
  max-width: 640px;
  color: var(--white);
}
.guar-label {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.8;
  margin-bottom: 10px;
}
.guar-headline { font-size: 1.55rem; font-weight: 700; line-height: 1.35; margin-bottom: 10px; }
.guar-body { font-family: var(--font-sans); font-size: 0.95rem; font-weight: 300; opacity: 0.92; margin: 0; line-height: 1.7; }

/* ── SERVICES ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  margin-top: 48px;
}
.svc-card {
  border: 1px solid var(--border);
  overflow: hidden;
  transition: box-shadow var(--ease), transform var(--ease);
}
.svc-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.svc-img { width: 100%; height: 240px; object-fit: cover; transition: transform 0.5s ease; }
.svc-card:hover .svc-img { transform: scale(1.04); }
.svc-body { padding: 28px; }
.svc-body h3 { color: var(--charcoal); margin-bottom: 10px; }
.svc-body p { font-size: 0.9rem; font-weight: 300; color: var(--gray); margin-bottom: 16px; line-height: 1.7; }
.svc-features li {
  font-size: 0.85rem;
  font-weight: 400;
  padding: 5px 0;
  border-bottom: 1px solid var(--border);
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 8px;
}
.svc-features li i { color: var(--amber); font-size: 0.8rem; flex-shrink: 0; }
.svc-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--amber);
  font-weight: 600;
  font-size: 0.88rem;
  margin-top: 16px;
  position: relative;
  transition: gap var(--ease);
}
.svc-link:hover { gap: 10px; }

/* ── PORTFOLIO / BEFORE-AFTER ── */
.portfolio-items { display: grid; gap: 52px; margin-top: 48px; }
.project-meta h3 { font-size: 1.15rem; color: var(--charcoal); margin-bottom: 4px; }
.project-meta p { font-size: 0.88rem; font-weight: 300; color: var(--gray); margin-bottom: 14px; }
.ba-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }
.ba-panel { position: relative; overflow: hidden; display: block; }
.ba-panel img {
  width: 100%;
  height: 290px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.ba-panel:hover img { transform: scale(1.04); }
.ba-label {
  position: absolute;
  top: 12px; left: 12px;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 4px 10px;
  color: var(--white);
  background: var(--charcoal);
}
.ba-label.after { background: var(--amber); }

/* GLightbox zoom hint */
.ba-panel::after {
  content: '\f00e';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  bottom: 12px; right: 12px;
  background: rgba(28,35,51,0.75);
  color: var(--white);
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  opacity: 0;
  transition: opacity var(--ease);
}
.ba-panel:hover::after { opacity: 1; }

/* ── TESTIMONIALS / SWIPER ── */
.rating-bar { text-align: center; margin-bottom: 48px; }
.rating-num {
  font-family: var(--font-serif);
  font-size: 4.5rem;
  font-weight: 900;
  color: var(--charcoal);
  line-height: 1;
}
.rating-stars { color: var(--amber); font-size: 1.6rem; margin: 8px 0; letter-spacing: 2px; }
.rating-count { font-size: 0.85rem; font-weight: 400; color: var(--gray); }

.testimonials-swiper { padding-bottom: 48px !important; }
.testimonials-swiper .swiper-slide { height: auto; }
.swiper-pagination-bullet { background: var(--border); opacity: 1; }
.swiper-pagination-bullet-active { background: var(--amber) !important; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}
.review-card {
  border: 1px solid var(--border);
  padding: 28px;
  background: var(--white);
  height: 100%;
  transition: box-shadow var(--ease), transform var(--ease);
}
.review-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.review-stars { color: var(--amber); font-size: 0.9rem; letter-spacing: 2px; margin-bottom: 14px; }
.review-text { font-size: 0.95rem; font-weight: 300; color: var(--dark); line-height: 1.8; margin-bottom: 20px; font-style: italic; }
.reviewer { display: flex; align-items: center; gap: 14px; }
.reviewer img {
  width: 50px; height: 50px;
  border-radius: 50%;
  border: 2px solid var(--amber);
  object-fit: cover;
}
.reviewer-name { font-family: var(--font-serif); font-weight: 700; color: var(--charcoal); font-size: 0.95rem; }
.reviewer-loc { font-size: 0.78rem; font-weight: 400; color: var(--gray); margin-top: 2px; }

/* ── LEAD MAGNET ── */
.lm-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.lm-text h2 { color: var(--white); }
.lm-text .sub { color: rgba(255,255,255,0.82); margin-bottom: 28px; }
.guide-box { background: var(--amber); padding: 36px 32px; color: var(--white); }
.guide-box .guide-tag {
  font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase; opacity: 0.8; margin-bottom: 10px;
}
.guide-box h3 { font-size: 1.35rem; line-height: 1.4; margin-bottom: 10px; }
.guide-box .guide-sub { font-size: 0.88rem; font-weight: 300; opacity: 0.88; margin-bottom: 16px; }
.guide-box ul li { font-size: 0.85rem; padding: 5px 0; display: flex; align-items: flex-start; gap: 8px; opacity: 0.92; }
.guide-box ul li i { margin-top: 3px; flex-shrink: 0; }
.lm-form { display: flex; flex-direction: column; gap: 10px; }
.lm-form input {
  padding: 14px 16px; border: none; font-size: 0.95rem;
  font-family: var(--font-sans); transition: outline var(--ease);
}
.lm-form input:focus { outline: 3px solid var(--charcoal); }
.lm-form button {
  background: var(--amber); color: var(--white); border: none;
  padding: 16px; font-size: 0.95rem; font-weight: 600;
  font-family: var(--font-sans); text-transform: uppercase; letter-spacing: 0.08em;
  cursor: pointer; transition: background var(--ease);
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.lm-form button:hover { background: var(--amber-dark); }
.lm-disclaimer { font-size: 0.74rem; font-weight: 300; color: rgba(255,255,255,0.55); margin-top: 6px; }

/* ── FORMS / SURVEY ── */
.survey-box,
.form-wrap { max-width: 720px; margin: 0 auto; }
.field { margin-bottom: 20px; }
.field label {
  display: block; font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.02em; color: var(--charcoal); margin-bottom: 6px;
}
.section-dark .field label { color: rgba(255,255,255,0.85); }
.field select,
.field input,
.field textarea {
  width: 100%; padding: 12px 14px;
  border: 1px solid var(--border); font-size: 0.95rem;
  font-family: var(--font-sans); color: var(--dark);
  background: var(--white); font-weight: 300;
  transition: border-color var(--ease), box-shadow var(--ease);
}
.field select:focus,
.field input:focus,
.field textarea:focus {
  outline: none; border-color: var(--amber);
  box-shadow: 0 0 0 3px rgba(232,146,42,0.15);
}
.section-dark .field input,
.section-dark .field textarea {
  background: rgba(255,255,255,0.08); border: none;
  border-bottom: 2px solid rgba(255,255,255,0.3); color: var(--white);
}
.section-dark .field input::placeholder,
.section-dark .field textarea::placeholder { color: rgba(255,255,255,0.4); }
.section-dark .field select { color: var(--dark); background: var(--white); border: 1px solid var(--border); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.submit-btn {
  width: 100%; background: var(--amber); color: var(--white);
  border: none; padding: 18px; font-size: 1rem; font-weight: 600;
  font-family: var(--font-sans); cursor: pointer; margin-top: 6px;
  letter-spacing: 0.04em; display: flex; align-items: center; justify-content: center; gap: 8px;
  transition: background var(--ease), transform var(--ease);
}
.submit-btn:hover { background: var(--amber-dark); transform: translateY(-1px); }
.form-note { font-size: 0.74rem; font-weight: 300; color: var(--gray); text-align: center; margin-top: 8px; }
.section-dark .form-note { color: rgba(255,255,255,0.4); }

/* ── TRUST BADGES ── */
.badges-row {
  display: flex; justify-content: center;
  gap: 40px; flex-wrap: wrap; margin-top: 40px;
}
.trust-badge {
  width: 144px; height: 144px; border-radius: 50%;
  border: 5px solid var(--amber); background: var(--charcoal);
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; text-align: center; padding: 14px;
  color: var(--white); transition: transform var(--ease), box-shadow var(--ease);
}
.trust-badge:hover { transform: scale(1.07); box-shadow: 0 8px 28px rgba(28,35,51,0.28); }
.trust-badge .tb-icon { font-size: 1.8rem; margin-bottom: 6px; color: var(--amber); }
.trust-badge .tb-title {
  font-size: 0.58rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; line-height: 1.4;
}
.trust-badge .tb-val { font-size: 0.7rem; color: var(--amber); font-weight: 700; margin-top: 4px; }

.bbb-seal-row { display: flex; justify-content: center; margin-top: 32px; }
.bbb-seal { width: 220px; height: auto; }
.bbb-footer-seal { width: 160px; height: auto; margin-top: 16px; display: block; opacity: 0.92; }
.bbb-footer-seal:hover { opacity: 1; }

/* ── FOOTER ── */
.site-footer { background: var(--charcoal); color: rgba(255,255,255,0.8); padding: 56px 0 24px; }
.footer-grid  { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr;    gap: 40px; margin-bottom: 32px; }
.footer-brand p,
.footer-col p { font-size: 0.85rem; font-weight: 300; color: rgba(255,255,255,0.72); line-height: 1.8; margin-top: 14px; }
.footer-col h4 {
  color: var(--amber); font-family: var(--font-sans); font-size: 0.72rem;
  font-weight: 700; text-transform: uppercase; letter-spacing: 0.14em; margin-bottom: 14px;
}
.footer-col li { margin-bottom: 8px; }
.footer-col li a,
.footer-contact p { font-size: 0.85rem; font-weight: 300; color: rgba(255,255,255,0.7); transition: color var(--ease); }
.footer-col li a:hover { color: var(--amber); }
.footer-col a { color: var(--amber); }
.footer-contact p i { color: var(--amber); margin-right: 6px; width: 14px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 20px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px;
}
.footer-bottom p,
.footer-bottom a { font-size: 0.75rem; font-weight: 300; color: rgba(255,255,255,0.4); margin: 0; }
.footer-bottom a:hover { color: var(--amber); }

/* ── ADU PAGE ── */
.expertise-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; margin-top: 48px; }
.expertise-img { width: 100%; height: 400px; object-fit: cover; }
.expertise-list li {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 12px 0; border-bottom: 1px solid var(--border); font-size: 0.92rem;
}
.expertise-list li:last-child { border-bottom: none; }
.expertise-list .check { color: var(--amber); font-size: 1rem; flex-shrink: 0; margin-top: 3px; }
.expertise-list .item-body strong { display: block; color: var(--charcoal); font-family: var(--font-serif); font-size: 0.95rem; margin-bottom: 2px; }
.expertise-list .item-body p { margin: 0; color: var(--gray); font-size: 0.85rem; font-weight: 300; }

.process-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 24px; margin-top: 48px; }
.process-step {
  text-align: center; padding: 28px 20px;
  border-top: 4px solid var(--amber); background: var(--white);
  transition: box-shadow var(--ease), transform var(--ease);
}
.process-step:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.step-n { font-family: var(--font-serif); font-size: 2.5rem; font-weight: 700; color: var(--amber); line-height: 1; margin-bottom: 10px; }
.process-step h3 { font-size: 1rem; color: var(--charcoal); margin-bottom: 8px; }
.process-step p { font-size: 0.85rem; font-weight: 300; color: var(--gray); margin: 0; line-height: 1.7; }

.roi-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.roi-card { background: var(--amber); color: var(--white); padding: 40px 36px; text-align: center; }
.roi-card .big-num { font-family: var(--font-serif); font-size: 3.5rem; font-weight: 900; line-height: 1; margin-bottom: 8px; }
.roi-card .big-lbl { font-size: 0.95rem; font-weight: 300; opacity: 0.88; margin-bottom: 20px; }
.roi-table { width: 100%; font-size: 0.85rem; }
.roi-table td { padding: 7px 0; font-weight: 300; }
.roi-table td:first-child { text-align: left; opacity: 0.85; }
.roi-table td:last-child { text-align: right; font-weight: 600; }
.roi-table tr.total td { border-top: 1px solid rgba(255,255,255,0.4); padding-top: 10px; font-size: 0.95rem; }
.roi-text h2 { color: var(--charcoal); }
.roi-text .sub { color: var(--gray); margin-bottom: 24px; }
.roi-bullets li {
  font-size: 0.9rem; font-weight: 300;
  padding: 7px 0; border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 10px;
}
.roi-bullets li i { color: var(--amber); flex-shrink: 0; }

/* ── INTERIOR DOORS PAGE ── */
.clients-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; margin-top: 40px; }
.client-card {
  border-top: 4px solid var(--amber); padding: 28px 22px;
  background: var(--white); box-shadow: var(--shadow);
  transition: box-shadow var(--ease), transform var(--ease);
}
.client-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.client-icon { font-size: 2rem; color: var(--amber); margin-bottom: 14px; }
.client-card h3 { color: var(--charcoal); font-size: 1rem; margin-bottom: 8px; }
.client-card p { font-size: 0.85rem; font-weight: 300; color: var(--gray); margin: 0; line-height: 1.7; }

.catalog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 32px; margin-top: 48px; }
.product-card {
  border: 1px solid var(--border); overflow: hidden;
  transition: box-shadow var(--ease), transform var(--ease);
}
.product-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.product-img { width: 100%; height: 260px; object-fit: cover; transition: transform 0.5s ease; }
.product-card:hover .product-img { transform: scale(1.04); }
.product-body { padding: 24px; }
.product-tag {
  display: inline-block; font-size: 0.62rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  background: var(--charcoal); color: var(--white); padding: 3px 8px; margin-bottom: 10px;
}
.product-body h3 { color: var(--charcoal); margin-bottom: 8px; font-size: 1.1rem; }
.product-body p { font-size: 0.88rem; font-weight: 300; color: var(--gray); margin-bottom: 14px; line-height: 1.7; }
.product-specs li {
  font-size: 0.82rem; font-weight: 400; padding: 4px 0;
  border-bottom: 1px solid var(--border); color: var(--dark);
  display: flex; align-items: center; gap: 8px;
}
.product-specs li i { color: var(--amber); font-size: 0.7rem; flex-shrink: 0; }
.product-cta {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--amber); font-weight: 600; font-size: 0.85rem;
  margin-top: 16px; transition: gap var(--ease);
}
.product-cta:hover { gap: 10px; }

.specs-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; margin-top: 48px; }
.spec-table { width: 100%; border-collapse: collapse; }
.spec-table thead th {
  background: var(--charcoal); color: var(--white);
  padding: 12px 16px; text-align: left; font-size: 0.82rem; font-weight: 600;
}
.spec-table tbody td {
  padding: 10px 16px; font-size: 0.85rem; font-weight: 300;
  border-bottom: 1px solid var(--border); vertical-align: top;
}
.spec-table tbody tr:nth-child(even) td { background: var(--offwhite); }
.spec-table tbody td:first-child { font-weight: 600; color: var(--charcoal); white-space: nowrap; }
.custom-note { background: var(--amber); color: var(--white); padding: 24px 28px; margin-top: 24px; }
.custom-note h4 { margin-bottom: 8px; font-size: 1rem; }
.custom-note p { font-size: 0.88rem; font-weight: 300; opacity: 0.92; margin: 0; }

.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; margin-top: 40px; }
.pricing-tier {
  border: 2px solid var(--border); padding: 28px 24px; text-align: center;
  transition: border-color var(--ease), box-shadow var(--ease);
}
.pricing-tier:hover { border-color: var(--amber); box-shadow: var(--shadow); }
.pricing-tier.featured { border-color: var(--amber); background: var(--offwhite); box-shadow: var(--shadow); }
.tier-badge { display: block; font-size: 0.65rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--amber); margin-bottom: 8px; }
.tier-name { font-family: var(--font-serif); font-size: 1.2rem; font-weight: 700; color: var(--charcoal); margin-bottom: 6px; }
.tier-qty { font-size: 0.82rem; font-weight: 300; color: var(--gray); margin-bottom: 16px; }
.tier-desc { font-size: 0.82rem; font-weight: 500; color: var(--charcoal); margin-top: 6px; font-style: italic; }

/* ── THANK YOU PAGE ── */
.page-main { flex: 1; display: flex; align-items: center; justify-content: center; padding: 60px 24px; }
.card {
  background: var(--white); border-top: 6px solid var(--amber);
  max-width: 640px; width: 100%; padding: 56px 48px;
  text-align: center; box-shadow: var(--shadow-lg);
}
.check-icon { font-size: 3.5rem; color: var(--amber); margin-bottom: 20px; }
.tagline { font-size: 1rem; font-weight: 300; color: var(--gray); line-height: 1.8; margin-bottom: 36px; }
.steps { text-align: left; margin-bottom: 36px; border: 1px solid var(--border); }
.steps-header {
  background: var(--charcoal); color: var(--white); padding: 14px 24px;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
}
.step-item { display: flex; align-items: flex-start; gap: 16px; padding: 18px 24px; border-bottom: 1px solid var(--border); }
.step-item:last-child { border-bottom: none; }
.step-num {
  width: 32px; height: 32px; border-radius: 50%; background: var(--amber);
  color: var(--white); font-weight: 700; font-size: 0.88rem;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px;
}
.step-body h4 { font-size: 1rem; color: var(--charcoal); margin-bottom: 4px; }
.step-body p { font-size: 0.85rem; font-weight: 300; color: var(--gray); margin: 0; line-height: 1.7; }
.contact-line { font-size: 0.85rem; font-weight: 400; color: #777; margin-top: 28px; }
.contact-line a { color: var(--amber); font-weight: 600; }

/* ── AOS OVERRIDES ── */
[data-aos] { pointer-events: none; }
[data-aos].aos-animate { pointer-events: auto; }

/* ── GLIGHTBOX OVERRIDES ── */
.glightbox-clean .gslide-description { background: var(--charcoal); }
.glightbox-clean .gdesc-inner { padding: 16px 20px; }
.glightbox-clean .gslide-title { color: var(--white); font-family: var(--font-serif); }

/* ── RESPONSIVE: 1024px ── */
@media (max-width: 1024px) {
  :root { --section-pad: 64px; }
  .footer-grid  { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .hero-inner   { grid-template-columns: 1fr; }
  .hero-img-panel { display: none; }
  .lm-wrap      { grid-template-columns: 1fr; gap: 40px; }
  .roi-wrap     { grid-template-columns: 1fr; gap: 40px; }
  .expertise-wrap { grid-template-columns: 1fr; gap: 32px; }
  .specs-wrap   { grid-template-columns: 1fr; }
}

/* ── RESPONSIVE: 768px ── */
@media (max-width: 768px) {
  :root { --section-pad: 48px; }
  h1 { font-size: 1.9rem; }
  h2 { font-size: 1.55rem; }

  .nav-toggle { display: flex; }
  .main-nav {
    display: none;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--white); border-bottom: 3px solid var(--charcoal);
    padding: 16px 24px; box-shadow: 0 8px 24px rgba(28,35,51,0.12);
  }
  .main-nav.is-open { display: block; }
  .main-nav ul { flex-direction: column; align-items: flex-start; gap: 14px; }
  .main-nav a { font-size: 1rem; }
  .site-header { position: relative; }

  .hero { padding: 64px 0; }
  .hero-stats { gap: 16px; }
  .stat-div { display: none; }

  .ba-grid { grid-template-columns: 1fr; }
  .ba-panel img { height: 220px; }
  .field-row { grid-template-columns: 1fr; }
  .footer-grid  { grid-template-columns: 1fr; gap: 28px; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .trust-strip-inner { gap: 20px; }
  .roi-strip-inner, .value-strip-inner { gap: 0; }
  .roi-stat, .vs-item { padding: 12px 18px; }
  .services-grid { grid-template-columns: 1fr; }
  .pain-grid     { grid-template-columns: 1fr; }
  .catalog-grid  { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .badges-row { gap: 20px; }
  .trust-badge { width: 120px; height: 120px; }
  .card { padding: 36px 24px; }
  .guarantee-badge { padding: 24px 28px; }
  .hdr-nav { display: none; }
  .hdr-phone { display: none; }
  .lm-wrap { grid-template-columns: 1fr; }
}

/* ── RESPONSIVE: 480px ── */
@media (max-width: 480px) {
  .hero-btns { flex-direction: column; }
  .btn-primary, .btn-outline-w, .btn-dark { display: block; text-align: center; }
  .process-steps { grid-template-columns: 1fr; }
  .pricing-grid  { grid-template-columns: 1fr; }
  .clients-grid  { grid-template-columns: 1fr; }
}
