
:root{
  --coffee:#2b1710;
  --coffee2:#4a2618;
  --cream:#f7f1e8;
  --cream2:#eee2d2;
  --gold:#c89b5b;
  --text:#241914;
  --muted:#75685f;
  --white:#fff;
  --shadow:0 18px 50px rgba(43,23,16,.12);
}

*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{font-family:Inter,Arial,sans-serif;color:var(--text);background:var(--cream);line-height:1.6}
a{text-decoration:none;color:inherit}

.container{width:min(1160px,92%);margin:auto}
.navbar{position:sticky;top:0;z-index:20;background:rgba(247,241,232,.94);backdrop-filter:blur(12px);border-bottom:1px solid rgba(43,23,16,.08)}
.nav-inner{height:76px;display:flex;align-items:center;justify-content:space-between}

.logo{font-family:Georgia,serif;font-size:21px;font-weight:700;letter-spacing:.04em}
.logo span{display:block;font:10px Inter,Arial,sans-serif;letter-spacing:.22em;color:var(--gold);margin-top:-3px}

.nav-links{display:flex;gap:28px;align-items:center;font-size:14px;font-weight:600}
.nav-links a:hover,.nav-links a.active{color:var(--gold)}

.btn{display:inline-block;padding:13px 23px;border-radius:4px;font-weight:700;font-size:14px;border:1px solid transparent;cursor:pointer}
.btn-primary{background:var(--coffee);color:white}
.btn-primary:hover{background:var(--coffee2)}
.btn-outline{border-color:var(--coffee);color:var(--coffee)}

.hero{min-height:400px;display:grid;place-items:center;background:radial-gradient(circle at 80% 30%,#d8b47d 0,#b88752 18%,#4a2618 48%,#24120d 100%);color:white;position:relative;overflow:hidden}
.hero:after{content:"";position:absolute;inset:0;background:linear-gradient(90deg,rgba(30,14,9,.9),rgba(30,14,9,.35),rgba(30,14,9,.15))}
.hero-content{position:relative;z-index:1;width:min(1160px,92%);padding:90px 0}
.eyebrow{text-transform:uppercase;letter-spacing:.25em;font-size:11px;color:var(--gold);font-weight:800;margin-bottom:18px}
.hero h1{font:700 clamp(46px,7vw,86px)/.98 Georgia,serif;max-width:800px}
.hero p{max-width:610px;color:#eee1d5;margin:25px 0 30px;font-size:18px}

.section{padding:90px 0}
.section-light{background:#fff}
.section-title{font:700 clamp(32px,4vw,52px)/1.1 Georgia,serif;margin-bottom:16px}
.section-subtitle{color:var(--muted);max-width:680px}

.grid{display:grid;gap:24px}
.grid-3{grid-template-columns:repeat(3,1fr)}
.grid-2{grid-template-columns:repeat(2,1fr)}

.card{background:white;border:1px solid rgba(43,23,16,.08);border-radius:10px;overflow:hidden;box-shadow:var(--shadow)}
.card-body{padding:26px}
.card h3{font:700 25px Georgia,serif;margin-bottom:8px}
.card p{color:var(--muted);font-size:14px}

.feature-list{list-style:none;margin:20px 0}
.feature-list li{padding:9px 0;border-bottom:1px solid #eee;color:#5e5149}
.feature-list li:before{content:"✓";color:var(--gold);font-weight:800;margin-right:10px}

.stats{display:grid;grid-template-columns:repeat(4,1fr);gap:15px;margin-top:45px}
.stat{padding:25px;background:var(--cream);border-radius:8px}
.stat strong{font:700 30px Georgia,serif;display:block}
.stat span{color:var(--muted);font-size:13px}

.cta{background:var(--coffee);color:white;border-radius:12px;padding:55px}
.cta p{color:#d8c7ba;margin:12px 0 24px}

.footer{background:#1d100c;color:#d8c7ba;padding:55px 0 25px}
.footer-grid{display:grid;grid-template-columns:2fr 1fr 1fr;gap:50px}
.footer h3{color:white;margin-bottom:14px;font-size: 14px}
.footer a{display:block;margin:8px 0;color:#cdbeb3;font-size:14px}
.footer-bottom{border-top:1px solid #3a2923;margin-top:35px;padding-top:18px;font-size:12px}

.page-hero{padding:90px 0;background:var(--coffee);color:white}
.page-hero h1{font:700 60px Georgia,serif}

.spec-table{width:100%;border-collapse:collapse;background:white;border-radius:10px;overflow:hidden}
.spec-table td{padding:15px 18px;border-bottom:1px solid #eee}
.spec-table td:first-child{font-weight:700;width:42%;background:#faf7f2}

.form{background:white;padding:35px;border-radius:10px;box-shadow:var(--shadow)}
.form-grid{display:grid;grid-template-columns:1fr 1fr;gap:18px}

.field{display:flex;flex-direction:column;gap:7px}
.field.full{grid-column:1/-1}
.field label{font-size:13px;font-weight:700}
.field input,.field select,.field textarea{padding:13px;border:1px solid #d8cec5;border-radius:5px;font:inherit}
.field textarea{min-height:130px;resize:vertical}

.mobile-menu{display:none}

@media(max-width:800px){
 .nav-links{display:none}.mobile-menu{display:block;background:none;border:0;font-size:24px}
 .grid-3,.grid-2,.stats,.footer-grid,.form-grid{grid-template-columns:1fr}
 .hero{min-height:580px}.page-hero h1{font-size:45px}.cta{padding:35px}
}

img{max-width:100%;display:block}

.machine-image {
    width: 100%;
    height: 300px;              /* same size for every image */
    background: #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.machine-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;        /* entire image is visible */
    display: block;
}