*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
:root{--ink:#1c1917;--sand:#f5f0eb;--copper:#b45309;--copper-light:#fef3c7;--grey:#78716c;--rule:#d6d3d1}
body{font-family:Georgia,"Times New Roman",serif;line-height:1.7;color:var(--ink);background:var(--sand)}
img{max-width:100%;height:auto;display:block}
a{color:var(--copper);text-decoration:none}
a:hover{text-decoration:underline}

/* Nav */
nav{display:flex;justify-content:space-between;align-items:center;padding:1.2rem 2rem;max-width:1100px;margin:0 auto}
.logo{font-size:1rem;letter-spacing:.15em;text-transform:uppercase;color:var(--ink);font-weight:400}
.logo:hover{text-decoration:none}
.links{display:flex;gap:1.8rem;font-size:.85rem;letter-spacing:.08em;text-transform:uppercase}
.links a{color:var(--grey)}
.links a:hover{color:var(--copper);text-decoration:none}
.links a.active{color:var(--copper);border-bottom:1px solid var(--copper)}

/* Hero - Home */
.hero{display:grid;grid-template-columns:1fr 1fr;min-height:70vh;max-width:1100px;margin:0 auto;padding:2rem;align-items:center;gap:3rem}
.hero-text h1{font-size:2.6rem;font-weight:400;line-height:1.2;margin-bottom:1rem}
.hero-text h1 em{font-style:italic;color:var(--copper)}
.hero-text p{font-size:1.05rem;color:var(--grey);max-width:420px;margin-bottom:1.5rem}
.cta{display:inline-block;font-size:.85rem;letter-spacing:.12em;text-transform:uppercase;border:1px solid var(--ink);padding:.7rem 1.6rem;color:var(--ink)}
.cta:hover{background:var(--ink);color:var(--sand);text-decoration:none}
.hero-img{width:100%;aspect-ratio:4/5;object-fit:cover;border-radius:2px}

/* Page header */
.page-header{max-width:1100px;margin:0 auto;padding:4rem 2rem 2rem;border-bottom:1px solid var(--rule)}
.page-header h1{font-size:2.2rem;font-weight:400;margin-bottom:.5rem}
.page-header p{font-size:1.05rem;color:var(--grey);max-width:560px}

/* Sections */
.section{max-width:1100px;margin:0 auto;padding:3rem 2rem}
.section .label{font-size:.85rem;letter-spacing:.15em;text-transform:uppercase;color:var(--grey);margin-bottom:2rem;font-weight:400}

/* Service grid */
.services-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:2rem}
.svc{border-top:1px solid var(--rule);padding-top:1.2rem}
.svc h3{font-size:1.15rem;font-weight:400;margin-bottom:.5rem}
.svc p{font-size:.9rem;color:var(--grey)}

/* Product cards */
.products-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:2rem}
.product-card{background:#fff;border-radius:3px;overflow:hidden}
.product-card img{width:100%;aspect-ratio:3/2;object-fit:cover}
.product-card .info{padding:1.2rem}
.product-card h3{font-size:1.1rem;font-weight:400;margin-bottom:.3rem}
.product-card .price{font-size:.9rem;color:var(--copper);margin-bottom:.4rem}
.product-card p{font-size:.85rem;color:var(--grey)}

/* Gallery grid */
.gallery-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1rem}
.gallery-grid img{width:100%;aspect-ratio:1;object-fit:cover;border-radius:2px}

/* Two-col about */
.two-col{display:grid;grid-template-columns:1fr 1fr;gap:3rem;align-items:center;max-width:1100px;margin:0 auto;padding:3rem 2rem}
.two-col img{width:100%;aspect-ratio:4/3;object-fit:cover;border-radius:2px}
.two-col h2{font-size:1.8rem;font-weight:400;margin-bottom:1rem}
.two-col h2 em{font-style:italic;color:var(--copper)}
.two-col p{font-size:.95rem;color:var(--grey);margin-bottom:.8rem}

/* Article content */
.article{max-width:700px;margin:0 auto;padding:3rem 2rem}
.article h2{font-size:1.5rem;font-weight:400;margin:2rem 0 .8rem;color:var(--ink)}
.article h3{font-size:1.15rem;font-weight:400;margin:1.5rem 0 .5rem}
.article p{font-size:.95rem;color:#44403c;margin-bottom:1rem}
.article ul{margin:0 0 1rem 1.5rem;font-size:.95rem;color:#44403c}
.article li{margin-bottom:.4rem}
.article img{width:100%;border-radius:2px;margin:1.5rem 0}

/* CTA band */
.cta-band{max-width:1100px;margin:0 auto;padding:3rem 2rem;border-top:1px solid var(--rule);display:flex;justify-content:space-between;align-items:center;gap:2rem}
.cta-band p{font-size:1.05rem;color:var(--grey)}

/* Footer */
footer{max-width:1100px;margin:0 auto;padding:3rem 2rem;display:flex;justify-content:space-between;font-size:.8rem;color:var(--grey);border-top:1px solid var(--rule)}
footer a{color:var(--grey)}
footer .foot-links{display:flex;gap:1.5rem}

@media(max-width:768px){
.hero{grid-template-columns:1fr;min-height:auto}
.hero-text h1{font-size:2rem}
.services-grid{grid-template-columns:1fr}
.products-grid{grid-template-columns:1fr}
.gallery-grid{grid-template-columns:repeat(2,1fr)}
.two-col{grid-template-columns:1fr}
.cta-band{flex-direction:column;align-items:flex-start}
nav{padding:1rem;flex-wrap:wrap;gap:.5rem}
.links{gap:1rem;font-size:.8rem}
footer{flex-direction:column;gap:.5rem}
}
