
/* ===========================================================
   GARCIA FRAMING INC. — Brand Stylesheet
   Palette: Midnight Navy / Deep Redwood / Natural Timber /
            Warm Parchment / Muted Steel Gray
   =========================================================== */

:root{
  --navy: #172436;
  --navy-2: #0f1b29;
  --redwood: #7a2e22;
  --redwood-2: #9c3b2a;
  --timber: #a9754e;
  --timber-2: #8a5c3a;
  --parchment: #f6f1e7;
  --parchment-2: #efe6d4;
  --steel: #6b7480;
  --steel-2: #47505c;
  --ink: #21262d;
  --white: #ffffff;
  --radius: 6px;
  --shadow-sm: 0 1px 3px rgba(15,27,41,0.08);
  --shadow-md: 0 6px 20px rgba(15,27,41,0.12);
  --maxw: 1180px;
}

*{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  margin:0;
  font-family:'Inter','Segoe UI',Arial,sans-serif;
  color:var(--ink);
  background:var(--parchment);
  line-height:1.65;
  -webkit-font-smoothing:antialiased;
}
h1,h2,h3,h4{
  font-family:'Inter',sans-serif;
  color:var(--navy);
  font-weight:800;
  letter-spacing:-0.01em;
  margin:0 0 .6em;
}
h1{font-size:clamp(2rem,4vw,3rem); line-height:1.15;}
h2{font-size:clamp(1.5rem,3vw,2.1rem);}
h3{font-size:1.25rem;}
p{margin:0 0 1em; color:#333d47;}
a{color:var(--redwood-2); text-decoration:none;}
a:hover{text-decoration:underline;}
img{max-width:100%; display:block;}
.container{max-width:var(--maxw); margin:0 auto; padding:0 24px;}
.section{padding:72px 0;}
.section--tight{padding:48px 0;}
.section--steel{background:var(--parchment-2); border-top:1px solid #e2d8c3; border-bottom:1px solid #e2d8c3;}
.section--navy{background:var(--navy); color:#dbe2ea;}
.section--navy h2, .section--navy h3{color:var(--white);}
.section--navy p{color:#b9c3cf;}

/* ---------- Truss / Beam decorative motifs ---------- */
.truss-divider{
  height:34px;
  width:100%;
  background-image:
    repeating-linear-gradient(115deg, transparent 0 38px, rgba(122,46,34,0.18) 38px 40px),
    repeating-linear-gradient(65deg, transparent 0 38px, rgba(23,36,54,0.14) 38px 40px);
  background-color:var(--parchment);
  border-top:1px solid #e2d8c3;
  border-bottom:1px solid #e2d8c3;
}
.beam-rule{
  display:block; width:64px; height:4px; background:var(--redwood);
  margin:14px 0 22px; border-radius:2px;
}
.beam-rule.center{margin-left:auto;margin-right:auto;}

/* ---------- Header / Nav ---------- */
.site-header{
  background:var(--navy);
  position:sticky; top:0; z-index:50;
  box-shadow:0 2px 10px rgba(0,0,0,0.15);
}
.nav-wrap{
  max-width:var(--maxw); margin:0 auto; padding:0 24px;
  display:flex; align-items:center; justify-content:space-between;
  height:82px;
}
.brand{display:flex; align-items:center; gap:12px; color:var(--white); flex-shrink:0;}
.brand-mark{width:46px; height:46px; flex-shrink:0;}
.brand-text{display:flex; flex-direction:column; line-height:1.1;}
.brand-text .name{
  font-weight:800; font-size:1.05rem; letter-spacing:.03em; color:var(--white);
  font-family:'Inter',sans-serif; white-space:nowrap;
}
.brand-text .tagline{
  font-size:.65rem; letter-spacing:.14em; color:var(--timber); text-transform:uppercase; margin-top:2px;
}
.brand:hover{text-decoration:none;}

nav.main-nav{display:flex; align-items:center; gap:6px;}
nav.main-nav a{
  color:#cfd7e0; font-weight:600; font-size:.92rem;
  padding:10px 14px; border-radius:4px; transition:all .15s ease;
}
nav.main-nav a:hover{color:var(--white); background:rgba(255,255,255,0.06); text-decoration:none;}
nav.main-nav a.active{color:var(--white); border-bottom:2px solid var(--redwood-2);}
.nav-cta{
  background:var(--redwood); color:var(--white) !important; padding:10px 20px !important;
  border-radius:4px; margin-left:8px;
}
.nav-cta:hover{background:var(--redwood-2) !important;}
.menu-toggle{display:none; background:none; border:none; color:var(--white); font-size:1.6rem; cursor:pointer;}

@media (max-width: 900px){
  nav.main-nav{
    position:absolute; top:82px; left:0; right:0; background:var(--navy-2);
    flex-direction:column; align-items:stretch; padding:8px 16px 18px; gap:0;
    display:none; border-top:1px solid rgba(255,255,255,0.08);
  }
  nav.main-nav.open{display:flex;}
  nav.main-nav a{padding:14px 10px; border-bottom:1px solid rgba(255,255,255,0.06);}
  .nav-cta{margin-left:0; text-align:center; margin-top:8px;}
  .menu-toggle{display:block;}
  .brand-text .name{font-size:.92rem;}
}

/* ---------- Hero ---------- */
.hero{
  background:linear-gradient(180deg, var(--navy) 0%, var(--navy) 55%, var(--navy-2) 100%);
  color:var(--white);
  position:relative;
  overflow:hidden;
  padding:88px 0 100px;
}
.hero::before{
  content:"";
  position:absolute; inset:0;
  background-image:
    repeating-linear-gradient(60deg, rgba(169,117,78,0.08) 0 2px, transparent 2px 90px),
    repeating-linear-gradient(120deg, rgba(169,117,78,0.08) 0 2px, transparent 2px 90px);
  opacity:.9;
}
.hero-inner{position:relative; z-index:2; display:grid; grid-template-columns:1.1fr .9fr; gap:48px; align-items:center;}
.hero-eyebrow{
  color:var(--timber); text-transform:uppercase; letter-spacing:.16em; font-size:.78rem; font-weight:700; margin-bottom:14px;
}
.hero h1{color:var(--white); margin-bottom:18px;}
.hero p.lead{color:#c6cedb; font-size:1.1rem; max-width:560px;}
.hero-cta-row{display:flex; gap:14px; margin-top:28px; flex-wrap:wrap;}
.btn{
  display:inline-block; padding:14px 26px; border-radius:4px; font-weight:700; font-size:.95rem;
  cursor:pointer; border:2px solid transparent; transition:all .15s ease; text-align:center;
}
.btn-primary{background:var(--redwood); color:var(--white);}
.btn-primary:hover{background:var(--redwood-2); text-decoration:none;}
.btn-outline{border-color:rgba(255,255,255,0.55); color:var(--white);}
.btn-outline:hover{background:rgba(255,255,255,0.08); text-decoration:none;}
.btn-outline-navy{border-color:var(--navy); color:var(--navy);}
.btn-outline-navy:hover{background:var(--navy); color:var(--white); text-decoration:none;}

.hero-frame-art{
  position:relative; z-index:2;
  background:rgba(255,255,255,0.04);
  border:1px solid rgba(169,117,78,0.35);
  border-radius:var(--radius);
  padding:22px;
}
.hero-frame-art svg{width:100%; height:auto; display:block;}

/* ---------- Trust strip ---------- */
.trust-strip{
  background:var(--parchment-2);
  border-top:1px solid #e2d8c3; border-bottom:1px solid #e2d8c3;
  padding:22px 0;
}
.trust-strip .container{
  display:flex; flex-wrap:wrap; gap:18px 34px; justify-content:center; align-items:center;
  color:var(--steel-2); font-weight:600; font-size:.9rem; text-align:center;
}
.trust-strip .item{display:flex; align-items:center; gap:8px;}
.trust-strip .dot{width:6px;height:6px;border-radius:50%;background:var(--redwood);}

/* ---------- Cards / grids ---------- */
.grid{display:grid; gap:28px;}
.grid-3{grid-template-columns:repeat(3, 1fr);}
.grid-2{grid-template-columns:repeat(2, 1fr);}
@media (max-width:900px){ .grid-3,.grid-2{grid-template-columns:1fr;} .hero-inner{grid-template-columns:1fr;} }

.card{
  background:var(--white);
  border:1px solid #e5ddc9;
  border-radius:var(--radius);
  padding:30px 26px;
  position:relative;
  box-shadow:var(--shadow-sm);
  transition:transform .18s ease, box-shadow .18s ease;
}
.card:hover{transform:translateY(-3px); box-shadow:var(--shadow-md);}
.card::before{
  content:""; position:absolute; top:0; left:0; width:100%; height:4px;
  background:linear-gradient(90deg, var(--redwood), var(--timber));
  border-radius:var(--radius) var(--radius) 0 0;
}
.card .icon{
  width:46px; height:46px; margin-bottom:16px;
  display:flex; align-items:center; justify-content:center;
  background:var(--navy); border-radius:4px;
}
.card .icon svg{width:24px; height:24px;}
.card h3{margin-bottom:10px;}
.card p{margin-bottom:0; font-size:.95rem;}

.service-detail{
  display:grid; grid-template-columns:56px 1fr; gap:18px; padding:26px 0; border-bottom:1px solid #e2d8c3;
}
.service-detail:last-child{border-bottom:none;}
.service-detail .num{
  font-family:'Inter',sans-serif; font-weight:800; font-size:1.1rem; color:var(--white);
  background:var(--redwood); width:44px; height:44px; border-radius:4px;
  display:flex; align-items:center; justify-content:center;
}
.service-detail h3{margin-bottom:8px; color:var(--navy);}
.service-detail p{margin-bottom:0; color:#3b4451;}

/* ---------- CTA band ---------- */
.cta-band{
  background:var(--redwood);
  color:var(--white);
  padding:56px 0;
  text-align:center;
  position:relative;
  overflow:hidden;
}
.cta-band::before{
  content:""; position:absolute; inset:0;
  background-image:repeating-linear-gradient(45deg, rgba(255,255,255,0.05) 0 2px, transparent 2px 60px);
}
.cta-band h2{color:var(--white); position:relative; z-index:1;}
.cta-band p{color:#f1ded6; position:relative; z-index:1; max-width:560px; margin:0 auto 26px;}
.cta-band .btn-row{display:flex; gap:14px; justify-content:center; flex-wrap:wrap; position:relative; z-index:1;}

/* ---------- Forms ---------- */
.form-card{
  background:var(--white); border:1px solid #e5ddc9; border-radius:var(--radius);
  padding:36px; box-shadow:var(--shadow-sm);
}
.form-row{margin-bottom:18px;}
.form-row label{display:block; font-weight:700; font-size:.88rem; color:var(--navy); margin-bottom:6px;}
.form-row input, .form-row select, .form-row textarea{
  width:100%; padding:12px 14px; border:1px solid #cfc6ae; border-radius:4px;
  font-family:inherit; font-size:.95rem; background:var(--parchment); color:var(--ink);
}
.form-row textarea{min-height:140px; resize:vertical;}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus{
  outline:none; border-color:var(--redwood); background:var(--white);
}
.form-grid{display:grid; grid-template-columns:1fr 1fr; gap:0 20px;}
@media (max-width:700px){.form-grid{grid-template-columns:1fr;}}
.form-note{font-size:.82rem; color:var(--steel-2); margin-top:10px;}

/* ---------- Contact info blocks ---------- */
.info-block{display:flex; gap:16px; align-items:flex-start; margin-bottom:26px;}
.info-block .ic{
  width:42px; height:42px; background:var(--navy); border-radius:4px; flex-shrink:0;
  display:flex; align-items:center; justify-content:center;
}
.info-block .ic svg{width:22px; height:22px;}
.info-block h4{margin:0 0 4px; color:var(--navy); font-size:1rem;}
.info-block p{margin:0; color:#3b4451; font-size:.95rem;}
.info-block a{color:var(--redwood-2); font-weight:600;}

/* ---------- Page hero (secondary pages) ---------- */
.page-hero{
  background:var(--navy); color:var(--white); padding:64px 0 56px; position:relative; overflow:hidden;
}
.page-hero::before{
  content:""; position:absolute; inset:0;
  background-image:repeating-linear-gradient(70deg, rgba(169,117,78,0.10) 0 2px, transparent 2px 80px);
}
.page-hero .container{position:relative; z-index:1;}
.breadcrumb{color:var(--timber); font-size:.8rem; text-transform:uppercase; letter-spacing:.12em; font-weight:700; margin-bottom:10px;}
.page-hero h1{color:var(--white); margin-bottom:10px;}
.page-hero p{color:#c6cedb; max-width:640px; margin-bottom:0;}

/* ---------- Footer ---------- */
footer.site-footer{
  background:var(--navy-2);
  color:#b7c0cc;
  padding:56px 0 26px;
}
.footer-grid{display:grid; grid-template-columns:1.4fr 1fr 1fr; gap:36px; margin-bottom:36px;}
@media (max-width:800px){.footer-grid{grid-template-columns:1fr; gap:28px;}}
.footer-brand{display:flex; gap:12px; align-items:center; margin-bottom:14px;}
.footer-brand .name{color:var(--white); font-weight:800; font-size:1.05rem; letter-spacing:.02em;}
footer.site-footer h4{color:var(--white); font-size:.85rem; text-transform:uppercase; letter-spacing:.1em; margin-bottom:16px;}
footer.site-footer p{color:#9aa5b2; font-size:.9rem;}
footer.site-footer a{color:#c6cedb;}
footer.site-footer a:hover{color:var(--white);}
.footer-links{list-style:none; margin:0; padding:0;}
.footer-links li{margin-bottom:10px; font-size:.9rem;}
.footer-bottom{
  border-top:1px solid rgba(255,255,255,0.08); padding-top:22px;
  display:flex; justify-content:space-between; flex-wrap:wrap; gap:10px;
  font-size:.82rem; color:#7c8794;
}
.footer-bottom a{color:#9aa5b2;}

/* ---------- Legal pages ---------- */
.legal-content h2{margin-top:2em; color:var(--navy);}
.legal-content h2:first-child{margin-top:0;}
.legal-content p, .legal-content li{color:#333d47; font-size:.98rem;}
.legal-content ul{padding-left:22px;}
.legal-updated{
  display:inline-block; background:var(--parchment-2); border:1px solid #e2d8c3; color:var(--steel-2);
  font-size:.85rem; padding:6px 14px; border-radius:4px; margin-bottom:28px; font-weight:600;
}

/* ---------- Misc ---------- */
.text-center{text-align:center;}
.mb-0{margin-bottom:0;}
.eyebrow{
  color:var(--redwood-2); text-transform:uppercase; letter-spacing:.14em; font-size:.78rem; font-weight:700; margin-bottom:10px;
}
.two-col{display:grid; grid-template-columns:1fr 1fr; gap:56px; align-items:center;}
@media (max-width:900px){.two-col{grid-template-columns:1fr; gap:32px;}}
.timber-panel{
  background:linear-gradient(135deg, var(--timber) 0%, var(--timber-2) 100%);
  border-radius:var(--radius); padding:2px;
}
.timber-panel-inner{
  background:var(--parchment); border-radius:calc(var(--radius) - 1px); padding:28px;
}
.stat-row{display:flex; gap:34px; margin-top:22px; flex-wrap:wrap;}
.stat-row .stat b{display:block; font-size:1.6rem; color:var(--navy); font-weight:800;}
.stat-row .stat span{font-size:.82rem; color:var(--steel-2); text-transform:uppercase; letter-spacing:.06em;}
