:root {
  --brown:      #2D0F0F;
  --brown-mid:  #4A1A0A;
  --orange:     #C2622D;
  --orange-dk:  #A34E23;
  --orange-lt:  #F9EDE6;
  --cream:      #FDF6F3;
  --text:       #1A0505;
  --text2:      #6B3A2A;
  --white:      #ffffff;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Open Sans', sans-serif; color: var(--text); background: var(--white); }
sup { font-size: 0.6em; vertical-align: super; line-height: 0; }

/* NAV */
nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--brown);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px; height: 70px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.3);
}
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo img { height: 48px; width: 48px; object-fit: contain; }
.nav-brand { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 19px; color: var(--white); }
.nav-brand em { color: var(--orange); font-style: normal; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { color: rgba(255,255,255,0.8); text-decoration: none; font-size: 14px; font-weight: 600; transition: color .2s; }
.nav-links a:hover, .nav-links a.active { color: var(--orange); }
.nav-cta { background: var(--orange) !important; color: var(--white) !important; padding: 9px 22px; border-radius: 6px; font-weight: 700 !important; transition: background .2s !important; }
.nav-cta:hover { background: var(--orange-dk) !important; }

/* HERO */
.hero {
  background: linear-gradient(130deg, var(--brown) 0%, #5C2E00 55%, #7A3800 100%);
  padding: 88px 48px 72px;
  display: flex; align-items: center; gap: 60px;
  position: relative; overflow: hidden;
}
.hero::before {
  content:''; position:absolute; top:-80px; right:-80px;
  width:480px; height:480px;
  background: radial-gradient(circle, rgba(249,115,22,.15) 0%, transparent 70%);
  border-radius:50%;
}
.hero-content { flex: 1; position: relative; z-index: 1; }
.hero-badge { display:inline-block; background:rgba(249,115,22,.2); border:1px solid var(--orange); color:var(--orange); font-size:11px; font-weight:700; letter-spacing:1px; text-transform:uppercase; padding:5px 14px; border-radius:20px; margin-bottom:22px; }
.hero h1 { font-family:'Montserrat',sans-serif; font-size:50px; font-weight:900; color:var(--white); line-height:1.1; margin-bottom:18px; }
.hero h1 span { color: var(--orange); }
.hero p { font-size:17px; color:rgba(255,255,255,.80); line-height:1.75; max-width:500px; margin-bottom:32px; }
.hero-btns { display:flex; gap:14px; flex-wrap:wrap; }
.btn-primary { background:var(--orange); color:var(--white); padding:13px 30px; border-radius:7px; font-weight:700; font-size:15px; text-decoration:none; transition:background .2s, transform .15s; display:inline-block; }
.btn-primary:hover { background:var(--orange-dk); transform:translateY(-1px); }
.btn-outline { background:transparent; color:var(--white); padding:13px 30px; border-radius:7px; font-weight:700; font-size:15px; text-decoration:none; border:2px solid rgba(255,255,255,.4); transition:border-color .2s, color .2s; display:inline-block; }
.btn-outline:hover { border-color:var(--orange); color:var(--orange); }
.hero-logo { flex-shrink:0; z-index:1; }
.hero-logo img { width:260px; height:260px; object-fit:contain; filter:drop-shadow(0 8px 32px rgba(0,0,0,.4)); }
.hero-stats { display:flex; gap:36px; margin-top:44px; flex-wrap:wrap; }
.hero-stat { text-align:center; }
.stat-num { font-family:'Montserrat',sans-serif; font-size:26px; font-weight:900; color:var(--orange); }
.stat-label { font-size:11px; color:rgba(255,255,255,.6); text-transform:uppercase; letter-spacing:.5px; margin-top:2px; }

/* HOME CARDS */
.home-cards { background:var(--cream); padding:72px 48px; }
.hc-inner { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; max-width:1100px; margin:0 auto; }
.hc-card { background:var(--white); border-radius:12px; padding:32px 24px; border-top:4px solid var(--orange); text-decoration:none; color:inherit; box-shadow:0 2px 12px rgba(59,26,0,.07); transition:transform .2s, box-shadow .2s; display:block; }
.hc-card:hover { transform:translateY(-4px); box-shadow:0 8px 28px rgba(59,26,0,.13); }
.hc-icon { font-size:32px; margin-bottom:14px; }
.hc-card h3 { font-family:'Montserrat',sans-serif; font-size:18px; font-weight:800; color:var(--brown); margin-bottom:10px; }
.hc-card p { font-size:14px; color:var(--text2); line-height:1.7; margin-bottom:16px; }
.hc-link { font-size:13px; font-weight:700; color:var(--orange); }

/* PAGE HERO (inner pages) */
.page-hero { background:linear-gradient(130deg, var(--brown) 0%, #5C2E00 100%); padding:64px 48px; text-align:center; }
.page-hero h1 { font-family:'Montserrat',sans-serif; font-size:40px; font-weight:900; color:var(--white); margin-bottom:12px; }
.page-hero p { font-size:16px; color:rgba(255,255,255,.75); max-width:520px; margin:0 auto; line-height:1.7; }

/* SECTION SHARED */
.section-label { font-size:11px; font-weight:700; letter-spacing:2px; text-transform:uppercase; color:var(--orange); margin-bottom:10px; }
.section-title { font-family:'Montserrat',sans-serif; font-size:36px; font-weight:900; color:var(--brown); margin-bottom:14px; }
.section-sub { font-size:15px; color:var(--text2); line-height:1.75; max-width:540px; }

/* SERVICES PAGE */
.services-page { padding:72px 48px; max-width:1100px; margin:0 auto; }
.svc-grid { display:grid; grid-template-columns:1fr 1fr; gap:32px; margin-top:48px; }
.svc-card { background:var(--white); border:1.5px solid #EDD8C4; border-radius:12px; padding:36px 28px; }
.svc-card .svc-icon { font-size:36px; margin-bottom:16px; }
.svc-card h3 { font-family:'Montserrat',sans-serif; font-size:20px; font-weight:800; color:var(--brown); margin-bottom:10px; }
.svc-card p { font-size:14px; color:var(--text2); line-height:1.75; margin-bottom:18px; }
.svc-card ul { list-style:none; }
.svc-card ul li { font-size:13px; color:var(--text2); padding:5px 0 5px 20px; position:relative; border-bottom:1px solid #F5E8DC; }
.svc-card ul li:last-child { border-bottom:none; }
.svc-card ul li::before { content:'✓'; position:absolute; left:0; color:var(--orange); font-weight:700; }
.svc-cta { background:var(--orange-lt); border-radius:12px; padding:36px; text-align:center; margin-top:48px; }
.svc-cta h3 { font-family:'Montserrat',sans-serif; font-size:22px; font-weight:900; color:var(--brown); margin-bottom:10px; }
.svc-cta p { font-size:14px; color:var(--text2); margin-bottom:20px; }

/* ABOUT PAGE */
.about-page { padding:72px 48px; max-width:1100px; margin:0 auto; }
.about-grid { display:grid; grid-template-columns:1fr 1fr; gap:56px; align-items:start; margin-top:48px; }
.about-visual { background:linear-gradient(135deg,var(--brown) 0%,var(--brown-mid,#5C2E00) 100%); border-radius:14px; padding:40px 32px; }
.about-visual-item { display:flex; align-items:center; gap:14px; padding:12px 0; border-bottom:1px solid rgba(255,255,255,.1); }
.about-visual-item:last-child { border-bottom:none; }
.about-dot { width:9px; height:9px; background:var(--orange); border-radius:50%; flex-shrink:0; }
.about-visual-item span { font-size:14px; color:rgba(255,255,255,.88); }
.about-text h2 { font-family:'Montserrat',sans-serif; font-size:28px; font-weight:900; color:var(--brown); margin-bottom:16px; }
.about-text p { font-size:15px; color:var(--text2); line-height:1.8; margin-bottom:14px; }
.about-highlights { display:grid; grid-template-columns:1fr 1fr; gap:14px; margin-top:28px; }
.ah { background:var(--orange-lt); border-radius:10px; padding:16px; }
.ah-num { font-family:'Montserrat',sans-serif; font-size:22px; font-weight:900; color:var(--orange-dk); }
.ah-label { font-size:12px; color:var(--brown); font-weight:600; margin-top:2px; }

/* CONTACT PAGE */
.contact-page { padding:72px 48px; max-width:960px; margin:0 auto; }
.contact-grid { display:grid; grid-template-columns:1fr 1fr; gap:52px; margin-top:48px; }
.cinfo h2 { font-family:'Montserrat',sans-serif; font-size:22px; font-weight:900; color:var(--brown); margin-bottom:16px; }
.cinfo p { font-size:14px; color:var(--text2); line-height:1.8; margin-bottom:24px; }
.cdetail { display:flex; align-items:flex-start; gap:14px; margin-bottom:18px; }
.cdetail-icon { width:38px; height:38px; background:var(--orange); border-radius:8px; display:flex; align-items:center; justify-content:center; font-size:17px; flex-shrink:0; }
.cdetail-text { font-size:14px; color:var(--text2); line-height:1.6; }
.cdetail-text strong { display:block; color:var(--brown); font-weight:700; font-size:11px; text-transform:uppercase; letter-spacing:.5px; margin-bottom:2px; }
.cform { display:flex; flex-direction:column; gap:12px; }
.cform input, .cform select, .cform textarea { width:100%; padding:11px 14px; border:1.5px solid #DDD0C4; border-radius:7px; font-size:14px; font-family:'Open Sans',sans-serif; color:var(--text); background:var(--white); outline:none; transition:border-color .2s; }
.cform input:focus, .cform select:focus, .cform textarea:focus { border-color:var(--orange); }
.cform textarea { resize:vertical; min-height:100px; }
.cform button { background:var(--brown); color:var(--white); border:none; padding:13px; border-radius:7px; font-size:15px; font-weight:700; cursor:pointer; font-family:'Montserrat',sans-serif; transition:background .2s; }
.cform button:hover { background:var(--orange); }
.form-success { display:none; background:#FEF3E8; border:1px solid var(--orange); border-radius:8px; padding:20px; text-align:center; color:var(--brown); font-weight:600; font-size:15px; }

/* FOOTER */
footer { background:var(--brown); padding:36px 48px; display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:18px; }
.footer-brand { display:flex; align-items:center; gap:12px; }
.footer-brand img { height:40px; width:40px; object-fit:contain; }
.footer-info { font-size:12px; color:rgba(255,255,255,.55); line-height:1.8; text-align:center; }
.footer-info a { color:var(--orange); text-decoration:none; }
.footer-right { font-size:12px; color:rgba(255,255,255,.4); }

/* RESPONSIVE */
@media(max-width:900px){
  nav { padding:0 20px; }
  .hero { flex-direction:column; padding:52px 24px 44px; text-align:center; }
  .hero h1 { font-size:34px; }
  .hero p { margin-left:auto; margin-right:auto; }
  .hero-btns { justify-content:center; }
  .hero-logo img { width:200px; height:200px; }
  .hero-stats { justify-content:center; }
  .home-cards { padding:52px 20px; }
  .hc-inner, .svc-grid, .about-grid, .contact-grid { grid-template-columns:1fr; }
  .services-page, .about-page, .contact-page { padding:52px 20px; }
  .page-hero { padding:48px 20px; }
  .page-hero h1 { font-size:30px; }
  footer { flex-direction:column; text-align:center; padding:28px 20px; }
}
