/* ======= RESET ======= */
*,*::before,*::after{box-sizing:border-box}
html{scroll-behavior:smooth}
body{margin:0;font-family:'Poppins',sans-serif;color:#1A1A1A;background:#E8DCC3;line-height:1.6;-webkit-font-smoothing:antialiased}
img{max-width:100%;display:block}
a{text-decoration:none;color:inherit}
ul{list-style:none;margin:0;padding:0}
h1,h2,h3,h4{font-family:'Playfair Display',serif;font-weight:700;margin:0 0 .5em;line-height:1.2}

:root{
  --dark-brown:#3E2C1C;
  --wood-brown:#6B4F2A;
  --beige:#E8DCC3;
  --orange:#C97A2B;
  --orange-dark:#A35E1E;
  --text:#1A1A1A;
}

.container{max-width:1200px;margin:0 auto;padding:0 24px}
.center{text-align:center}

/* ======= BUTTONS ======= */
.btn{display:inline-block;padding:14px 32px;border-radius:8px;font-weight:500;font-size:.95rem;letter-spacing:.5px;transition:all .3s ease;border:none;cursor:pointer}
.btn-wood{background:linear-gradient(135deg,var(--orange) 0%,var(--orange-dark) 100%);color:#fff;box-shadow:0 4px 14px rgba(201,122,43,.4)}
.btn-wood:hover{transform:translateY(-2px);box-shadow:0 8px 22px rgba(201,122,43,.55)}
.btn-olive{background:#6b6a3e;color:#fff;box-shadow:0 4px 10px rgba(0,0,0,.2)}
.btn-olive:hover{background:#55542f;transform:translateY(-2px)}

/* ======= HEADER ======= */
.site-header{
  position:sticky;top:0;z-index:100;
  background:linear-gradient(rgba(30,20,10,.95),rgba(30,20,10,.95)),url('images/wood-dark.png');
  background-size:cover;
  box-shadow:0 2px 12px rgba(0,0,0,.3);
}
.nav-wrap{display:flex;align-items:center;justify-content:space-between;padding:16px 24px;gap:20px}
.logo{display:flex;align-items:center;gap:10px;color:#fff}
.logo-mark{font-size:1.6rem}
.logo-text{font-family:'Playfair Display',serif;font-size:1.35rem;font-weight:700;line-height:1}
.logo-text small{display:block;font-size:.7rem;letter-spacing:3px;color:var(--orange);font-weight:400}

.main-nav ul{display:flex;gap:32px}
.main-nav a{color:#f1e8d4;font-size:.95rem;font-weight:400;transition:color .2s}
.main-nav a:hover{color:var(--orange)}

.nav-phone{color:#fff;font-weight:500;font-size:.95rem;white-space:nowrap}
.nav-phone:hover{color:var(--orange)}

.menu-toggle{display:none;background:none;border:0;cursor:pointer;flex-direction:column;gap:5px;padding:8px}
.menu-toggle span{width:26px;height:2px;background:#fff;transition:.3s}

/* ======= HERO ======= */
.hero{
  position:relative;min-height:90vh;display:flex;align-items:center;
  background:url('images/hero.png') center/cover no-repeat;
  color:#fff;overflow:hidden;
}
.hero-overlay{position:absolute;inset:0;background:linear-gradient(90deg,rgba(20,12,5,.75) 0%,rgba(20,12,5,.35) 60%,rgba(20,12,5,.1) 100%)}
.hero-content{position:relative;z-index:2}
.hero h1{font-size:clamp(2.6rem,6vw,5rem);margin-bottom:16px;text-shadow:2px 2px 10px rgba(0,0,0,.5)}
.hero .subtitle{color:var(--orange);font-size:1.2rem;letter-spacing:2px;margin-bottom:32px;font-weight:300}

/* ======= ABOUT ======= */
.about{
  padding:100px 0;
  background:linear-gradient(rgba(232,220,195,.85),rgba(232,220,195,.9)),url('images/paper.png') center/cover;
}
.about-grid{display:grid;grid-template-columns:1fr 1fr;gap:60px;align-items:center}
.eyebrow{color:var(--orange);font-size:.95rem;font-weight:500;letter-spacing:1px;display:block;margin-bottom:14px}
.about-text h2{font-size:clamp(1.8rem,3.2vw,2.6rem);color:var(--dark-brown);margin-bottom:20px}
.about-text p{font-size:1rem;color:#3a2e20;margin-bottom:28px;max-width:520px}
.about-img img{border-radius:8px;box-shadow:0 20px 40px rgba(0,0,0,.25);width:100%;height:380px;object-fit:cover}

/* ======= PRODUCTS ======= */
.products{
  padding:100px 0;
  background:linear-gradient(rgba(30,20,10,.85),rgba(30,20,10,.9)),url('images/wood-dark.png') center/cover;
  color:#fff;
}
.section-title{text-align:center;font-size:clamp(1.9rem,3.4vw,2.8rem);margin-bottom:56px;color:var(--dark-brown)}
.section-title.light{color:#fff}
.section-title.light::after{content:"";display:block;width:70px;height:3px;background:var(--orange);margin:18px auto 0;border-radius:2px}

.product-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:24px;margin-bottom:48px}
.product-card{
  background:rgba(0,0,0,.35);border-radius:8px;overflow:hidden;
  box-shadow:0 8px 20px rgba(0,0,0,.3);
  transition:transform .35s ease,box-shadow .35s ease;
  border:1px solid rgba(255,255,255,.05);
}
.product-card:hover{transform:translateY(-8px);box-shadow:0 16px 34px rgba(0,0,0,.5)}
.product-card img{width:100%;height:180px;object-fit:cover;transition:transform .5s}
.product-card:hover img{transform:scale(1.08)}
.product-body{padding:22px 20px}
.product-body h3{color:var(--orange);font-size:1.3rem;margin-bottom:10px}
.product-body p{color:#e0d5bf;font-size:.92rem;margin:0}

/* ======= SERVICES ======= */
.services{padding:100px 0;background:var(--beige)}
.services .section-title{color:var(--dark-brown)}
.service-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:28px}
.service-item{
  background:#fff;padding:36px 24px;border-radius:8px;text-align:center;
  box-shadow:0 6px 18px rgba(0,0,0,.08);transition:transform .3s;
  border-top:3px solid var(--orange);
}
.service-item:hover{transform:translateY(-6px);box-shadow:0 12px 28px rgba(0,0,0,.15)}
.service-item .icon{font-size:2.4rem;margin-bottom:14px}
.service-item h3{color:var(--dark-brown);font-size:1.2rem;margin-bottom:10px}
.service-item p{font-size:.9rem;color:#555;margin:0}

/* ======= CTA ======= */
.cta{
  padding:90px 0;
  background:linear-gradient(rgba(62,44,28,.88),rgba(62,44,28,.92)),url('images/wood-dark.png') center/cover;
  color:#fff;text-align:center;
}
.cta-inner h2{font-size:clamp(1.9rem,3.4vw,2.8rem);margin-bottom:16px}
.cta-inner p{font-size:1.05rem;color:#e0d5bf;margin-bottom:26px;max-width:600px;margin-left:auto;margin-right:auto}
.cta-phone{display:block;font-size:1.6rem;color:var(--orange);font-weight:600;margin-bottom:26px;font-family:'Playfair Display',serif}
.cta-phone:hover{color:#fff}

/* ======= FOOTER ======= */
.site-footer{
  background:linear-gradient(rgba(20,12,5,.96),rgba(20,12,5,.98)),url('images/wood-dark.png') center/cover;
  color:#d8cbb0;padding:70px 0 0;
}
.footer-grid{display:grid;grid-template-columns:1.5fr 1fr 1fr;gap:40px;padding-bottom:40px}
.logo-footer{color:#fff;margin-bottom:16px}
.footer-about{font-size:.92rem;color:#b3a890;max-width:320px}
.site-footer h4{color:#fff;font-size:1.1rem;margin-bottom:18px}
.footer-links li{margin-bottom:10px}
.footer-links a{color:#d8cbb0;font-size:.92rem;transition:color .2s}
.footer-links a:hover{color:var(--orange)}
.site-footer p{font-size:.92rem;margin:0 0 8px}
.copyright{border-top:1px solid rgba(255,255,255,.08);text-align:center;padding:22px 16px;font-size:.85rem;color:#8f836a}

/* ======= RESPONSIVE ======= */
@media (max-width:960px){
  .product-grid{grid-template-columns:repeat(2,1fr)}
  .service-grid{grid-template-columns:repeat(2,1fr)}
  .about-grid{grid-template-columns:1fr;gap:40px}
  .about-img img{height:auto}
  .footer-grid{grid-template-columns:1fr 1fr;gap:32px}
}

@media (max-width:720px){
  .nav-phone{display:none}
  .menu-toggle{display:flex}
  .main-nav{
    position:absolute;top:100%;left:0;right:0;
    background:rgba(20,12,5,.98);
    max-height:0;overflow:hidden;transition:max-height .35s ease;
  }
  .main-nav.open{max-height:400px}
  .main-nav ul{flex-direction:column;gap:0;padding:12px 0}
  .main-nav li{border-bottom:1px solid rgba(255,255,255,.06)}
  .main-nav a{display:block;padding:14px 24px}

  .hero{min-height:80vh;text-align:left}
  .about,.products,.services,.cta{padding:70px 0}
  .footer-grid{grid-template-columns:1fr;text-align:left}
}

@media (max-width:480px){
  .product-grid,.service-grid{grid-template-columns:1fr}
}
