/* Marmma — copia estática | estilos generales */
@import url('https://fonts.googleapis.com/css2?family=Mulish:ital,wght@0,300;0,400;0,600;0,700;1,400&family=Poppins:wght@300;400;600&display=swap');

:root{
  --dark: #20242a;
  --dark-2: #262b31;
  --terracotta: #c17c56;
  --terracotta-dark: #a5623f;
  --cream: #f2efe6;
  --taupe: #a4917d;
  --taupe-dark: #8f7c69;
  --text-light: #f1eee6;
  --text-muted: #cfc9bd;
  --max: 1200px;
}

*{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  margin:0;
  font-family:'Mulish', Arial, Helvetica, sans-serif;
  color:#333;
  background:var(--cream);
  line-height:1.55;
}
img{max-width:100%; display:block;}
a{color:inherit; text-decoration:none;}
.container{max-width:var(--max); margin:0 auto; padding:0 32px;}

/* Reveal-on-scroll */
.reveal{
  opacity:0;
  transform:translateY(28px);
  transition:opacity .8s ease, transform .8s ease;
}
.reveal.is-visible{
  opacity:1;
  transform:none;
}

/* Image hover zoom */
.img-wrap{overflow:hidden; border-radius:2px;}
.img-wrap img{transition:transform .6s ease;}
.img-wrap:hover img{transform:scale(1.07);}

/* Header */
header.site-header{
  background:var(--dark);
  padding:16px 0;
  text-align:center;
}
header.site-header .logo{display:inline-block;}
header.site-header .logo-img{height:26px; width:auto; margin:0 auto;}

/* Hero */
.hero{
  position:relative;
  min-height:640px;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  background:linear-gradient(160deg, rgba(178,101,68,.55), rgba(60,40,30,.45)), url('../img/hero.jpg') center/cover no-repeat;
  color:#fff;
  padding:60px 24px;
}
.hero h1{
  font-family:'Mulish', sans-serif;
  font-weight:400;
  font-size:clamp(28px, 4vw, 44px);
  margin:0 0 18px;
  max-width:900px;
}
.hero h1 b{font-weight:700;}
.hero p{
  font-size:clamp(16px, 2vw, 22px);
  font-weight:300;
  margin:0;
  max-width:800px;
}

/* Glimpse strip */
.glimpse-banner{
  background:var(--terracotta);
  color:#fff;
  text-align:center;
  padding:22px 20px;
  font-size:18px;
  font-weight:400;
}

/* Divisions */
.divisions{
  background:var(--dark-2);
  padding:60px 0 90px;
  border-radius:0 0 60px 60px;
}
.divisions-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:20px;
}
.division .img-wrap{height:220px;}
.division img{
  width:100%;
  height:220px;
  object-fit:cover;
}
.division h3{
  color:var(--text-light);
  font-weight:400;
  font-size:22px;
  margin:16px 0 6px;
}
.division p{
  color:var(--text-muted);
  font-size:14px;
  margin:0;
}
.division .pdf-link{
  display:inline-block;
  margin-top:8px;
  font-size:13px;
  color:var(--terracotta);
  border-bottom:1px solid var(--terracotta);
}
.division{cursor:pointer;}
.division:hover .pdf-link{color:#fff; border-color:#fff;}

/* About */
.about{
  background:var(--cream);
  padding:100px 0;
}
.about-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:center;
}
.about h2{
  font-size:14px;
  text-transform:uppercase;
  letter-spacing:2px;
  color:#8a7d6c;
  margin:0 0 20px;
  font-weight:600;
}
.about p{
  color:var(--terracotta-dark);
  font-weight:600;
  font-size:20px;
  margin:0 0 18px;
}
.about a.cta{
  display:inline-block;
  margin-top:10px;
  padding:12px 28px;
  border:1px solid var(--terracotta-dark);
  color:var(--terracotta-dark);
  border-radius:30px;
  font-size:14px;
  letter-spacing:.5px;
  transition:background .3s ease, color .3s ease;
}
.about a.cta:hover{background:var(--terracotta-dark); color:#fff;}

/* Collections */
.collections{
  background:var(--taupe);
  color:#fff;
  padding:90px 0;
}
.collections > .container > h2{
  font-size:28px;
  font-weight:300;
  margin:0 0 6px;
}
.collections > .container > p.lead{
  color:#e7ddd0;
  margin:0 0 60px;
  font-size:15px;
}
.collection-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
  align-items:center;
  padding:36px 0;
  border-top:1px solid rgba(255,255,255,.25);
}
.collection-row:first-of-type{border-top:none;}
.collection-row .img-wrap img{width:100%; height:240px; object-fit:cover;}
.collection-row h3{
  font-size:22px;
  font-weight:300;
  margin:0 0 14px;
}
.collection-row h3 b{font-weight:700;}
.collection-row p{
  font-size:14px;
  color:#efe9df;
  margin:0 0 12px;
}
.collection-row a.pdf-link{
  font-size:13px;
  color:#fff;
  border-bottom:1px solid #fff;
}

/* Footer */
footer{
  background:var(--taupe-dark);
  color:#fff;
  padding:70px 0 30px;
}
.footer-grid{
  display:grid;
  grid-template-columns:minmax(0,1fr) 260px;
  gap:28px;
  align-items:center;
}
.footer-photo-wrap{position:relative;}
.footer-photo-wrap img.catalog-photo{width:100%; height:auto; border-radius:2px; display:block;}
.download-cta{
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  background:rgba(193,124,86,.85);
  color:#fff;
  padding:14px 34px;
  border-radius:30px;
  font-size:15px;
  white-space:nowrap;
  transition:background .3s ease;
}
.download-cta:hover{background:var(--terracotta-dark);}
.footer-contact{text-align:right;}
.footer-contact img.mark{width:110px; height:auto; margin:0 0 18px auto;}
.footer-contact a{display:block; margin:4px 0; color:#fff;}
.footer-contact a:hover{color:var(--text-light); text-decoration:underline;}
.footer-contact .addr{color:#e7ddd0; font-size:14px; margin-top:6px;}
.footer-social{margin-top:14px;}
.footer-social a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:34px;
  height:34px;
  margin-left:10px;
  border-radius:50%;
  background:rgba(255,255,255,.18);
  border:1px solid rgba(255,255,255,.4);
  transition:background .3s ease;
}
.footer-social a:hover{background:rgba(255,255,255,.32);}
.footer-social img{width:16px; height:16px;}
.footer-legal{
  margin-top:50px;
  padding-top:20px;
  border-top:1px solid rgba(255,255,255,.2);
  text-align:center;
  font-size:13px;
  color:#e7ddd0;
}
.footer-legal a{margin:0 10px; text-decoration:underline;}

/* Legal pages */
.legal-page{max-width:820px; margin:0 auto; padding:60px 24px 100px;}
.legal-page h1{color:var(--terracotta-dark); font-size:30px; margin-bottom:6px;}
.legal-page h2{font-size:18px; margin-top:34px;}
.legal-page p, .legal-page li{font-size:15px; color:#444;}
.legal-page a.back{display:inline-block; margin-bottom:24px; color:var(--terracotta-dark);}

@media (max-width:860px){
  .divisions-grid, .about-grid, .collection-row, .footer-grid{grid-template-columns:1fr;}
  .footer-contact{text-align:left;}
  .footer-contact img.mark{margin:0 0 18px 0;}
  .download-cta{padding:12px 24px; font-size:13px;}
}
