:root{
  --bg:#f5f5f5;
  --surface:#ffffff;
  --surface-2:#fafafa;
  --text:#1f1f1f;
  --muted:#676767;
  --line:#e5e5e5;
  --accent:#db7a22;
  --accent-dark:#b95d0f;
  --shadow:0 18px 48px rgba(0,0,0,.08);
  --radius:20px;
  --max:1240px;
}

*{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  font-family:Inter, Arial, Helvetica, sans-serif;
  color:var(--text);
  background:var(--bg);
  line-height:1.55;
}

a{
  color:inherit;
  text-decoration:none;
}

img{
  max-width:100%;
  display:block;
}

.container{
  width:min(var(--max), calc(100% - 40px));
  margin:0 auto;
}

.topbar{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(255,255,255,.93);
  backdrop-filter:blur(14px);
  border-bottom:1px solid var(--line);
}

.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  padding:16px 0;
}

.brand{
  display:flex;
  align-items:center;
  gap:14px;
  font-weight:800;
}

.brand-logo{
  height:42px;
  width:auto;
  display:block;
}

.brand-mark{
  width:48px;
  height:48px;
  border-radius:14px;
  background:linear-gradient(145deg,#fff,#efefef);
  border:1px solid var(--line);
  display:grid;
  place-items:center;
  box-shadow:var(--shadow);
  font-size:1.1rem;
  letter-spacing:.12em;
}

.brand-copy small{
  display:block;
  font-size:.72rem;
  letter-spacing:.16em;
  color:var(--muted);
  text-transform:uppercase;
}

.brand-copy strong{
  display:block;
  font-size:1.1rem;
  letter-spacing:.08em;
}

.menu{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:22px;
  font-size:.96rem;
}

.menu a{
  color:#424242;
}

.menu a:hover,
.menu a.active{
  color:var(--accent-dark);
}

.menu .return-link{
  padding:10px 14px;
  border-radius:999px;
  background:#111;
  color:#fff;
}

.hero{
  padding:68px 0 38px;
}

.hero-grid{
  display:grid;
  grid-template-columns:1.06fr .94fr;
  gap:36px;
  align-items:center;
}

.kicker{
  display:inline-block;
  padding:7px 12px;
  border-radius:999px;
  background:#fff;
  border:1px solid var(--line);
  color:var(--accent-dark);
  font-size:.74rem;
  font-weight:800;
  letter-spacing:.18em;
  text-transform:uppercase;
}

.hero h1{
  font-size:clamp(2.4rem,4.6vw,4.9rem);
  line-height:.98;
  margin:18px 0 18px;
  letter-spacing:-.04em;
}

.hero p{
  font-size:1.08rem;
  color:var(--muted);
  max-width:60ch;
}

.actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-top:26px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:48px;
  padding:0 22px;
  border-radius:999px;
  font-weight:700;
  border:1px solid transparent;
  transition:.2s ease;
}

.btn.primary{
  background:var(--accent);
  color:#fff;
}

.btn.primary:hover{
  background:var(--accent-dark);
}

.btn.secondary{
  background:#fff;
  border-color:var(--line);
}

.btn.secondary:hover{
  border-color:#cfcfcf;
  background:#fcfcfc;
}

.hero-card{
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:28px;
  overflow:hidden;
  box-shadow:var(--shadow);
}

.hero-card .media-wrap{
  aspect-ratio:1.02/1;
  overflow:hidden;
}

.hero-card img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.hero-card .caption{
  padding:18px 20px;
  border-top:1px solid var(--line);
  display:flex;
  justify-content:space-between;
  gap:18px;
  font-size:.95rem;
  color:var(--muted);
}

.stats{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:16px;
  margin-top:26px;
}

.stat{
  background:#fff;
  border:1px solid var(--line);
  border-radius:18px;
  padding:18px;
  box-shadow:var(--shadow);
}

.stat strong{
  display:block;
  font-size:1.6rem;
  line-height:1;
  margin-bottom:8px;
}

.stat span{
  display:block;
  color:var(--muted);
  font-size:.95rem;
}

.section{
  padding:34px 0;
}

.section-head{
  display:flex;
  justify-content:space-between;
  align-items:end;
  gap:24px;
  margin-bottom:24px;
}

.section-head h2{
  margin:8px 0 0;
  font-size:clamp(1.75rem,3vw,2.8rem);
  line-height:1.04;
  letter-spacing:-.03em;
}

.section-head p{
  max-width:56ch;
  color:var(--muted);
  margin:0;
}

.grid{
  display:grid;
  gap:22px;
}

.grid-4{
  grid-template-columns:repeat(4, 1fr);
}

.grid-3{
  grid-template-columns:repeat(3, 1fr);
}

.grid-2{
  grid-template-columns:repeat(2, 1fr);
}

.card{
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:24px;
  overflow:hidden;
  box-shadow:var(--shadow);
}

.card .media{
  aspect-ratio:1.3/1;
  overflow:hidden;
  background:#ececec;
}

.card .media img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.card .body{
  padding:20px;
}

.eyebrow{
  font-size:.74rem;
  font-weight:800;
  letter-spacing:.16em;
  color:var(--accent-dark);
  text-transform:uppercase;
  margin-bottom:8px;
}

.card h3{
  font-size:1.26rem;
  line-height:1.1;
  margin:0 0 10px;
}

.card p{
  margin:0;
  color:var(--muted);
}

.band{
  padding:34px 0;
}

.band-inner{
  background:linear-gradient(180deg,#ffffff,#f7f7f7);
  border:1px solid var(--line);
  border-radius:28px;
  padding:34px;
  box-shadow:var(--shadow);
}

.feature{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:26px;
  align-items:center;
}

.feature .image-panel{
  border-radius:22px;
  overflow:hidden;
  border:1px solid var(--line);
  background:#eee;
}

.feature .image-panel img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.feature .copy p{
  color:var(--muted);
}

.list{
  display:grid;
  gap:14px;
  margin-top:18px;
}

.list-item{
  display:flex;
  gap:12px;
  align-items:flex-start;
}

.list-item b{
  min-width:28px;
  height:28px;
  border-radius:50%;
  display:grid;
  place-items:center;
  background:#fff3e7;
  color:var(--accent-dark);
}

.gallery-masonry{
  columns:3 260px;
  column-gap:18px;
}

.gallery-item{
  break-inside:avoid;
  margin-bottom:18px;
  background:#fff;
  border:1px solid var(--line);
  border-radius:22px;
  overflow:hidden;
  box-shadow:var(--shadow);
}

.gallery-item img{
  width:100%;
  height:auto;
}

.gallery-item .cap{
  padding:12px 14px;
  color:var(--muted);
  font-size:.92rem;
}

.product-row{
  display:grid;
  grid-template-columns:260px 1fr;
  gap:26px;
  align-items:center;
  padding:22px 0;
  border-top:1px solid var(--line);
}

.product-row:first-child{
  border-top:0;
  padding-top:0;
}

.thumb-box{
  background:#fff;
  border:1px solid var(--line);
  border-radius:20px;
  padding:12px;
  box-shadow:var(--shadow);
}

.thumb-box img{
  width:100%;
  height:180px;
  object-fit:contain;
  background:#f7f7f7;
  border-radius:12px;
}

.footer{
  margin-top:42px;
  padding:36px 0;
  background:#fff;
  border-top:1px solid var(--line);
}

.footer-grid{
  display:grid;
  grid-template-columns:1.4fr .8fr .8fr;
  gap:24px;
}

.footer p,
.footer li{
  color:var(--muted);
}

.footer ul{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap:8px;
}

.small{
  font-size:.92rem;
  color:var(--muted);
}

.notice{
  padding:16px 18px;
  background:#fff8f2;
  border:1px solid #f0d7bf;
  border-radius:16px;
  color:#7c5620;
}

@media (max-width: 980px){
  .hero-grid,
  .feature,
  .product-row,
  .footer-grid,
  .section-head{
    grid-template-columns:1fr;
    display:grid;
  }

  .stats,
  .grid-4,
  .grid-3,
  .grid-2{
    grid-template-columns:1fr 1fr;
  }
}

@media (max-width: 640px){
  .container{
    width:min(var(--max), calc(100% - 24px));
  }

  .menu{
    gap:14px;
    font-size:.9rem;
  }

  .stats,
  .grid-4,
  .grid-3,
  .grid-2{
    grid-template-columns:1fr;
  }

  .hero{
    padding-top:40px;
  }

  .hero h1{
    font-size:2.2rem;
  }

  .product-row{
    gap:16px;
  }

  .brand-logo{
    height:36px;
  }
}