@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600&family=Montserrat:wght@400;500;600&display=swap');

:root{
  --beige:#c8b3a8;
  --cream:#fbf8f5;
  --ink:#2d2927;
  --muted:#766d69;
  --line:#e5dcd6;
  --white:#fff;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{margin:0;background:var(--cream);color:var(--ink);font-family:Montserrat,Arial,sans-serif}
a{text-decoration:none;color:inherit}
.site-header{height:82px;background:rgba(251,248,245,.96);border-bottom:1px solid var(--line);display:flex;align-items:center;justify-content:space-between;padding:0 6%;position:sticky;top:0;z-index:20}
.brand img{width:125px;height:auto;display:block}
nav{display:flex;gap:28px;font-size:13px;letter-spacing:.08em;text-transform:uppercase}
nav a:hover{opacity:.6}
.menu-btn{display:none;background:none;border:0;font-size:25px}
.hero{min-height:560px;background:var(--beige);display:grid;grid-template-columns:1fr 1fr;align-items:center;padding:70px 9%;gap:50px}
.hero-copy{max-width:520px}
.eyebrow{font-size:11px;letter-spacing:.22em;font-weight:600;margin:0 0 15px}
h1,h2{font-family:"Cormorant Garamond",Georgia,serif;font-weight:500;margin:0}
h1{font-size:72px;line-height:.95;margin-bottom:22px}
h2{font-size:46px;line-height:1.05}
.hero-copy>p:not(.eyebrow){max-width:430px;line-height:1.8;margin-bottom:30px}
.hero-logo-wrap{display:flex;justify-content:center}
.hero-logo{width:min(420px,90%);box-shadow:0 18px 50px rgba(45,41,39,.08)}
.primary-btn{display:inline-flex;align-items:center;justify-content:center;background:var(--ink);color:white;border:0;padding:14px 22px;font-size:12px;letter-spacing:.1em;text-transform:uppercase;cursor:pointer}
.categories{display:flex;justify-content:center;flex-wrap:wrap;gap:10px;padding:35px 6% 15px}
.category{border:1px solid var(--line);background:transparent;padding:11px 18px;font:500 11px Montserrat;letter-spacing:.1em;text-transform:uppercase;cursor:pointer}
.category.active,.category:hover{background:var(--ink);color:white;border-color:var(--ink)}
.catalog{padding:40px 6% 80px;max-width:1400px;margin:auto}
.section-heading{display:flex;justify-content:space-between;align-items:end;gap:20px;margin-bottom:30px}
.search-wrap input{width:260px;padding:13px 15px;border:1px solid var(--line);background:white;font:13px Montserrat;outline:none}
.product-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:24px}
.product{background:white;cursor:pointer;border:1px solid transparent;transition:transform .2s,border .2s}
.product:hover{transform:translateY(-3px);border-color:var(--line)}
.product-image{aspect-ratio:1/1;background:#eee;display:flex;align-items:center;justify-content:center;overflow:hidden}
.product-image img{width:100%;height:100%;object-fit:cover}
.placeholder{font-size:11px;letter-spacing:.1em;color:#8b817c;text-align:center;padding:20px}
.product-info{padding:17px 16px 20px}
.product-category{font-size:9px;letter-spacing:.16em;color:var(--muted);text-transform:uppercase}
.product-name{font-family:"Cormorant Garamond",Georgia,serif;font-size:25px;margin:5px 0}
.product-price{font-size:13px;font-weight:600}
.empty{text-align:center;padding:60px 0;color:var(--muted)}
.pagination{display:flex;justify-content:center;gap:8px;margin-top:35px}
.page-btn{border:1px solid var(--line);background:white;padding:9px 13px;cursor:pointer}
.page-btn.active{background:var(--ink);color:white}
.about{background:white;border-top:1px solid var(--line);border-bottom:1px solid var(--line);padding:80px 10%;display:grid;grid-template-columns:1fr 1fr;gap:60px;align-items:center}
.about p:not(.eyebrow){line-height:1.9;color:var(--muted);max-width:500px}
.contact{text-align:center;padding:90px 20px}
.contact p:not(.eyebrow){color:var(--muted);margin:15px auto 28px}
footer{padding:35px 6%;border-top:1px solid var(--line);display:flex;justify-content:space-between;align-items:center;color:var(--muted);font-size:11px}
footer img{width:100px}
.modal{display:none;position:fixed;inset:0;z-index:50;align-items:center;justify-content:center;padding:20px}
.modal.open{display:flex}
.modal-backdrop{position:absolute;inset:0;background:rgba(20,17,16,.55)}
.modal-card{position:relative;z-index:2;background:white;max-width:850px;width:100%;display:grid;grid-template-columns:1fr 1fr;max-height:90vh;overflow:auto}
.modal-image{min-height:450px;background:#eee;display:flex;align-items:center;justify-content:center}
.modal-image img{width:100%;height:100%;object-fit:cover}
.modal-info{padding:55px 45px;display:flex;flex-direction:column;justify-content:center}
.modal-info p:not(.eyebrow){line-height:1.7;color:var(--muted)}
.price{font-size:18px;font-weight:600;color:var(--ink)!important}
.close{position:absolute;right:12px;top:7px;border:0;background:none;font-size:32px;cursor:pointer;z-index:3}
@media(max-width:850px){
  .site-header{height:70px}
  nav{display:none;position:absolute;top:70px;left:0;right:0;background:var(--cream);padding:20px 6%;flex-direction:column;gap:18px;border-bottom:1px solid var(--line)}
  nav.open{display:flex}
  .menu-btn{display:block}
  .hero{grid-template-columns:1fr;min-height:auto;padding:55px 7%;text-align:center}
  .hero-copy{margin:auto}
  h1{font-size:54px}
  .hero-copy>p:not(.eyebrow){margin-left:auto;margin-right:auto}
  .hero-logo{width:280px}
  .section-heading{align-items:stretch;flex-direction:column}
  .search-wrap input{width:100%}
  .product-grid{grid-template-columns:repeat(2,1fr);gap:12px}
  .about{grid-template-columns:1fr;padding:60px 7%;gap:20px}
  .modal-card{grid-template-columns:1fr}
  .modal-image{min-height:300px}
  .modal-info{padding:35px 25px}
}
@media(max-width:430px){
  .product-grid{grid-template-columns:repeat(2,1fr)}
  .product-name{font-size:21px}
}
