/* ── RESET & ROOT ── */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
:root{
  --w:#FFFFFF;
  --b:#1A1A18;
  --g:#3E8C61;
  --gl:#D6EFE0;
  --gd:#1C4A35;
  --sand:#F5F0E8;
  --mid:#5C5248;
  --bd:#E8E2D8;
  --ac:#B85C38;
}
html{scroll-behavior:smooth}
body{
  font-family:'Noto Sans JP',sans-serif;
  font-weight:400;
  background:var(--w);
  color:var(--b);
  -webkit-font-smoothing:antialiased;
  font-size:15px;
  line-height:1.8;
  overflow-x:hidden;
}
a{text-decoration:none;color:inherit}
img{display:block;width:100%;height:100%;object-fit:cover}

/* ── NAV ── */
nav{
  position:fixed;
  top:0;left:0;right:0;
  z-index:200;
  height:56px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 48px;
  background:#fff;
  border-bottom:1px solid var(--bd);
}
.nav-logo{
  font-family:'Space Grotesk',sans-serif;
  font-weight:700;
  font-size:13px;
  letter-spacing:0.22em;
  color:var(--b);
}
.nav-logo img{height:28px;width:auto;display:block;}
.nav-links{display:flex;gap:32px}
.nav-links a{
  font-family:'Space Grotesk',sans-serif;
  font-size:10px;
  letter-spacing:0.14em;
  color:var(--mid);
  transition:color .2s;
}
.nav-links a:hover{color:var(--g)}
.nav-cta{
  font-family:'Space Grotesk',sans-serif;
  font-size:10px;
  letter-spacing:0.12em;
  padding:8px 22px;
  background:var(--g);
  color:#fff;
  border-radius:20px;
  transition:background .2s;
}
.nav-cta:hover{background:var(--gd)}

/* ── HERO ── */
.hero{
  position:relative;
  margin-top:56px;
  height:640px;
  overflow:hidden;
  display:flex;
  align-items:flex-end;
  clip-path:polygon(0 0,100% 0,100% 92%,0 100%);
}
.hero img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;object-position:center}
.hero-grad{
  position:absolute;
  inset:0;
  background:linear-gradient(135deg,rgba(10,30,18,0.78) 0%,rgba(10,30,18,0.15) 55%,transparent 100%);
  z-index:1;
}
.hero-content{
  position:relative;
  z-index:2;
  width:100%;
  padding:0 64px 72px;
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
}
.hero-tag{
  display:inline-block;
  font-family:'Space Grotesk',sans-serif;
  font-size:10px;
  letter-spacing:0.22em;
  color:var(--w);
  background:var(--ac);
  padding:5px 14px;
  border-radius:14px;
  margin-bottom:20px;
}
.hero-h1{
  font-family:'Space Grotesk',sans-serif;
  font-weight:700;
  font-size:clamp(42px,6vw,80px);
  line-height:1.02;
  letter-spacing:-0.03em;
  color:#fff;
  margin-bottom:18px;
}
.hero-h1 span{color:#7DD4A0}
.hero-sub{font-size:13px;color:rgba(255,255,255,0.6);line-height:2;margin-bottom:32px;max-width:420px}
.hero-cta{display:flex;gap:16px;align-items:center}
.btn-green{
  font-family:'Space Grotesk',sans-serif;
  font-size:12px;
  letter-spacing:0.1em;
  padding:14px 32px;
  background:var(--g);
  color:#fff;
  border-radius:28px;
  display:inline-flex;
  align-items:center;
  gap:10px;
  transition:background .2s,transform .15s;
}
.btn-green:hover{background:var(--gd);transform:translateY(-2px)}
.btn-ghost{
  font-family:'Space Grotesk',sans-serif;
  font-size:12px;
  letter-spacing:0.1em;
  color:#fff;
  opacity:.55;
  display:inline-flex;
  align-items:center;
  gap:8px;
  transition:opacity .2s;
}
.btn-ghost:hover{opacity:1}
.hero-badge{
  background:rgba(255,255,255,0.12);
  backdrop-filter:blur(8px);
  border:1px solid rgba(255,255,255,0.2);
  border-radius:16px;
  padding:20px 28px;
  text-align:center;
  flex-shrink:0;
}
.hero-badge-num{font-family:'Space Grotesk',sans-serif;font-size:32px;font-weight:700;color:#fff;line-height:1}
.hero-badge-label{font-family:'Space Grotesk',sans-serif;font-size:9px;letter-spacing:0.2em;color:rgba(255,255,255,0.5);margin-top:4px}

/* ── STATEMENT ── */
.statement{
  background:var(--gl);
  padding:64px 64px;
  display:flex;
  align-items:center;
  gap:56px;
  margin-top:-40px;
  position:relative;
  z-index:1;
  clip-path:polygon(0 0,100% 6%,100% 100%,0 94%);
}
.statement-label{
  font-family:'Space Grotesk',sans-serif;
  font-size:10px;
  letter-spacing:0.22em;
  color:#fff;
  white-space:nowrap;
  flex-shrink:0;
  background:var(--ac);
  padding:6px 16px;
  border-radius:14px;
}
.statement-text{font-size:16px;color:var(--gd);line-height:1.9;font-weight:500}

/* ── ZIGZAG CONCEPT ── */
.concept-section{padding:0;overflow:hidden}
.zz-block{display:grid;grid-template-columns:1fr 1fr;min-height:480px}
.zz-img{overflow:hidden;position:relative}
.zz-img img{width:100%;height:100%;object-fit:cover;transition:transform .6s}
.zz-block:hover .zz-img img{transform:scale(1.03)}
.zz-txt{display:flex;flex-direction:column;justify-content:center;padding:72px 64px;background:var(--w)}
.zz-block:nth-child(2) .zz-txt{background:var(--sand)}
.zz-label{
  font-family:'Space Grotesk',sans-serif;
  font-size:10px;
  letter-spacing:0.22em;
  color:var(--ac);
  margin-bottom:16px;
  display:flex;
  align-items:center;
  gap:12px;
}
.zz-label::before{content:'';width:28px;height:2px;background:var(--ac)}
.zz-h{
  font-family:'Space Grotesk',sans-serif;
  font-size:clamp(28px,3.4vw,48px);
  font-weight:700;
  line-height:1.1;
  letter-spacing:-0.02em;
  margin-bottom:24px;
}
.zz-h span{color:var(--g)}
.zz-body{font-size:14px;line-height:2.1;color:var(--mid);margin-bottom:28px}
.zz-catch{
  font-size:clamp(16px,1.8vw,21px);
  font-weight:500;
  line-height:1.75;
  padding:20px 24px;
  background:var(--gl);
  border-radius:10px;
  border-left:3px solid var(--g);
}

/* ── BRAND BAND ── */
.brand-line{
  background:var(--gd);
  color:#fff;
  padding:88px 64px;
  text-align:center;
  clip-path:polygon(0 6%,100% 0,100% 94%,0 100%);
  margin:-24px 0;
}
.brand-line-tag{
  font-family:'Space Grotesk',sans-serif;
  font-size:10px;
  letter-spacing:0.22em;
  color:rgba(125,212,160,0.8);
  margin-bottom:20px;
}
.brand-line-h{
  font-family:'Space Grotesk',sans-serif;
  font-size:clamp(22px,3vw,40px);
  font-weight:700;
  line-height:1.35;
  margin-bottom:16px;
}
.brand-line-text{font-size:14px;color:rgba(255,255,255,0.65);line-height:2;max-width:580px;margin:0 auto 36px}
.btn-white{
  font-family:'Space Grotesk',sans-serif;
  font-size:12px;
  letter-spacing:0.1em;
  padding:14px 36px;
  background:#fff;
  color:var(--gd);
  border-radius:28px;
  display:inline-flex;
  align-items:center;
  gap:10px;
  transition:transform .15s;
}
.btn-white:hover{transform:translateY(-2px)}

/* ── MODELS ── */
.models{padding:96px 64px;background:var(--sand);position:relative;z-index:1}
.models-hd{display:flex;align-items:flex-end;justify-content:space-between;margin-bottom:56px}
.models-hd-l .sec-label{
  font-family:'Space Grotesk',sans-serif;
  font-size:10px;
  letter-spacing:0.22em;
  color:var(--ac);
  margin-bottom:16px;
}
.models-hd-l h2{
  font-family:'Space Grotesk',sans-serif;
  font-size:clamp(26px,3vw,42px);
  font-weight:700;
  line-height:1.2;
  letter-spacing:-0.02em;
}
.link-arr{
  font-family:'Space Grotesk',sans-serif;
  font-size:11px;
  letter-spacing:0.1em;
  display:inline-flex;
  align-items:center;
  gap:6px;
  color:var(--g);
  border-bottom:1px solid var(--g);
  padding-bottom:2px;
  transition:opacity .2s;
}
.link-arr:hover{opacity:.7}
.models-grid{display:grid;grid-template-columns:repeat(3,1fr);border:2px solid var(--b)}
.mc{border-right:2px solid var(--b);transition:background .25s}
.mc:last-child{border-right:none}
.mc:hover{background:#ede8e0}
.mc-wrap{aspect-ratio:1/1;position:relative;overflow:hidden;border-bottom:2px solid var(--b)}
.mc-badge{
  position:absolute;top:0;left:0;z-index:2;
  font-family:'Space Grotesk',sans-serif;
  font-size:9px;
  letter-spacing:.14em;
  background:var(--b);
  color:#fff;
  padding:6px 14px;
}
.mc-info{padding:28px}
.mc-num{font-family:'Space Grotesk',sans-serif;font-size:9px;letter-spacing:.15em;color:var(--mid);margin-bottom:8px}
.mc-name{font-family:'Space Grotesk',sans-serif;font-size:20px;font-weight:700;letter-spacing:-.01em;margin-bottom:12px}
.mc-desc{font-size:12px;color:var(--mid);line-height:1.9;margin-bottom:16px}
.mc-specs{display:grid;grid-template-columns:auto 1fr;gap:4px 12px;font-size:11px;color:var(--mid);margin-bottom:18px}
.mc-specs dt{font-family:'Space Grotesk',sans-serif;opacity:.6}
.mc-price{font-family:'Space Grotesk',sans-serif;font-size:18px;font-weight:700;margin-bottom:18px}
.mc-link{
  font-family:'Space Grotesk',sans-serif;
  font-size:10px;
  letter-spacing:.12em;
  display:inline-flex;
  align-items:center;
  gap:6px;
  background:var(--b);
  color:#fff;
  padding:10px 20px;
  transition:background .2s;
}
.mc-link:hover{background:var(--g)}

/* ── JOURNAL ── */
.journal{
  padding:96px 64px;
  background:var(--w);
  position:relative;
  clip-path:polygon(0 4%,100% 0,100% 96%,0 100%);
  margin:-24px 0;
  z-index:2;
}
.j-hd{display:flex;align-items:flex-end;justify-content:space-between;margin-bottom:48px}
.j-hd-l .sec-label{
  font-family:'Space Grotesk',sans-serif;
  font-size:10px;
  letter-spacing:0.22em;
  color:var(--ac);
  margin-bottom:16px;
}
.j-hd-l h2{
  font-family:'Space Grotesk',sans-serif;
  font-size:clamp(26px,3vw,42px);
  font-weight:700;
  line-height:1.25;
  letter-spacing:-0.01em;
}
.j-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:28px}
.jc{
  cursor:pointer;
  color:inherit;
  border-radius:12px;
  overflow:hidden;
  background:var(--sand);
  transition:transform .3s;
  display:block;
}
.jc:hover{transform:translateY(-4px)}
.jc-img{aspect-ratio:16/10;overflow:hidden;position:relative}
.jc-img img{width:100%;height:100%;object-fit:cover;transition:transform .5s}
.jc:hover .jc-img img{transform:scale(1.05)}
.jc-body{padding:20px 24px 24px}
.jc-cat{
  font-family:'Space Grotesk',sans-serif;
  font-size:9px;
  letter-spacing:.18em;
  color:#fff;
  margin-bottom:8px;
  display:inline-block;
  background:var(--ac);
  padding:3px 10px;
  border-radius:10px;
}
.jc:nth-child(3n+1) .jc-cat{background:var(--g)}
.jc:nth-child(3n+3) .jc-cat{background:var(--gd)}
.jc-title{font-size:14px;line-height:1.7;margin-bottom:8px;font-weight:500}
.jc-date{font-family:'Space Grotesk',sans-serif;font-size:10px;color:var(--mid)}
.j-more{display:flex;justify-content:center;margin-top:48px}

/* ── HOW TO ── */
.howto{background:var(--gl);padding:96px 64px;position:relative;z-index:1}
.howto-inner{display:grid;grid-template-columns:1fr 1fr;gap:80px;align-items:center}
.howto-l .sec-label{
  font-family:'Space Grotesk',sans-serif;
  font-size:10px;
  letter-spacing:0.22em;
  color:var(--ac);
  margin-bottom:16px;
}
.howto-l h2{
  font-family:'Space Grotesk',sans-serif;
  font-size:clamp(26px,3vw,44px);
  font-weight:700;
  line-height:1.2;
  letter-spacing:-0.02em;
  margin-bottom:48px;
}
.steps{display:flex;flex-direction:column}
.step{
  display:flex;
  align-items:flex-start;
  gap:24px;
  padding:28px 0;
  border-bottom:1px solid rgba(62,140,97,0.2);
}
.step:first-child{border-top:1px solid rgba(62,140,97,0.2)}
.sn{
  font-family:'Space Grotesk',sans-serif;
  font-size:13px;
  font-weight:700;
  color:#fff;
  background:var(--ac);
  border-radius:50%;
  width:36px;height:36px;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
}
.sb-t{font-size:14px;font-weight:500;margin-bottom:4px;color:var(--gd)}
.sb-d{font-size:12px;color:var(--mid);line-height:1.85}
.howto-r{
  border-radius:20px;
  overflow:hidden;
  aspect-ratio:4/5;
  position:relative;
  clip-path:polygon(6% 0,100% 0,94% 100%,0 100%);
}
.howto-r img{width:100%;height:100%;object-fit:cover}

/* ── INSTAGRAM ── */
.instagram{
  padding:96px 64px;
  background:#E4DED4;
  clip-path:polygon(0 0,100% 5%,100% 100%,0 95%);
  margin:-24px 0;
  position:relative;
  z-index:2;
}
.ig-top{display:flex;align-items:flex-end;justify-content:space-between;margin-bottom:40px}
.ig-label{
  font-family:'Space Grotesk',sans-serif;
  font-size:10px;
  letter-spacing:0.22em;
  color:var(--gd);
  margin-bottom:16px;
}
.ig-h{
  font-family:'Space Grotesk',sans-serif;
  font-size:clamp(24px,3.5vw,48px);
  font-weight:700;
  letter-spacing:-.01em;
  color:var(--b);
}
.ig-link{
  font-family:'Space Grotesk',sans-serif;
  font-size:11px;
  letter-spacing:.12em;
  color:var(--gd);
  display:inline-flex;
  align-items:center;
  gap:6px;
  border-bottom:1px solid var(--gd);
  padding-bottom:2px;
  transition:opacity .2s;
}
.ig-link:hover{opacity:.7}
.ig-grid{display:grid;grid-template-columns:repeat(5,1fr);gap:8px}
.ig-cell{aspect-ratio:1;overflow:hidden;border-radius:10px;cursor:pointer}
.ig-cell img{transition:transform .4s,opacity .3s;width:100%;height:100%;object-fit:cover}
.ig-cell:hover img{transform:scale(1.06);opacity:.85}

/* ── FOOTER ── */
footer{background:var(--b);padding:80px 64px 44px;position:relative;z-index:1}
.footer-top{display:grid;grid-template-columns:240px 1fr;gap:72px;margin-bottom:56px}
.f-logo{font-family:'Space Grotesk',sans-serif;font-weight:700;font-size:14px;letter-spacing:.2em;margin-bottom:12px;color:#fff}
.f-logo img{height:28px;width:auto;display:block;filter:brightness(0) invert(1);margin-bottom:12px}
.f-tag{font-size:12px;color:rgba(255,255,255,0.35);line-height:2}
.f-cols{display:grid;grid-template-columns:repeat(5,1fr);gap:24px}
.f-ch{font-family:'Space Grotesk',sans-serif;font-size:9px;letter-spacing:.15em;color:rgba(255,255,255,0.3);margin-bottom:14px}
.f-cl{display:flex;flex-direction:column;gap:10px}
.f-cl a{font-size:12px;color:rgba(255,255,255,0.45);transition:color .2s}
.f-cl a:hover{color:#fff}
.footer-btm{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding-top:24px;
  border-top:1px solid rgba(255,255,255,0.08);
}
.f-copy{font-family:'Space Grotesk',sans-serif;font-size:10px;color:rgba(255,255,255,0.2);letter-spacing:.05em}
.f-pol{display:flex;gap:16px}
.f-pol a{font-size:11px;color:rgba(255,255,255,0.3);transition:color .2s}
.f-pol a:hover{color:#fff}

/* ── FADE IN ── */
.fade-in{opacity:0;transform:translateY(24px);transition:opacity .7s ease,transform .7s ease}
.fade-in.visible{opacity:1;transform:none}

/* ── BLOG: ARCHIVE ── */
.blog-hero{
  margin-top:56px;
  padding:80px 64px 64px;
  background:var(--sand);
  border-bottom:1px solid var(--bd);
}
.blog-hero-label{
  font-family:'Space Grotesk',sans-serif;
  font-size:10px;
  letter-spacing:0.22em;
  color:var(--ac);
  margin-bottom:16px;
}
.blog-hero h1{
  font-family:'Space Grotesk',sans-serif;
  font-size:clamp(32px,4vw,56px);
  font-weight:700;
  letter-spacing:-0.02em;
  line-height:1.15;
}
.blog-main{
  padding:64px 64px 96px;
  background:var(--w);
}
.blog-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:28px;margin-bottom:56px}
.blog-pagination{
  display:flex;
  justify-content:center;
  gap:8px;
  font-family:'Space Grotesk',sans-serif;
  font-size:12px;
}
.blog-pagination .page-numbers{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:40px;height:40px;
  border:1px solid var(--bd);
  border-radius:8px;
  color:var(--mid);
  transition:all .2s;
}
.blog-pagination .page-numbers.current,
.blog-pagination .page-numbers:hover{
  background:var(--g);
  color:#fff;
  border-color:var(--g);
}
.blog-pagination .page-numbers.dots{border:none;color:var(--mid)}

/* ── BLOG: SINGLE POST ── */
.post-hero{
  margin-top:56px;
  position:relative;
  height:480px;
  overflow:hidden;
}
.post-hero img{width:100%;height:100%;object-fit:cover}
.post-hero-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(to top,rgba(10,20,15,0.72) 0%,transparent 55%);
}
.post-hero-content{
  position:absolute;
  bottom:0;left:0;right:0;
  padding:0 64px 48px;
  color:#fff;
}
.post-no-thumb{
  margin-top:56px;
  background:var(--sand);
  padding:80px 64px 48px;
}
.post-no-thumb .post-meta-block{color:var(--b)}
.post-cat{
  font-family:'Space Grotesk',sans-serif;
  font-size:9px;
  letter-spacing:.18em;
  color:#fff;
  display:inline-block;
  background:var(--g);
  padding:4px 12px;
  border-radius:10px;
  margin-bottom:16px;
}
.post-no-thumb .post-cat{color:#fff}
.post-title{
  font-family:'Space Grotesk',sans-serif;
  font-size:clamp(24px,3.5vw,48px);
  font-weight:700;
  line-height:1.2;
  letter-spacing:-0.02em;
  margin-bottom:16px;
}
.post-meta{
  font-family:'Space Grotesk',sans-serif;
  font-size:11px;
  letter-spacing:0.1em;
  opacity:0.55;
  display:flex;
  gap:16px;
}
.post-body{
  max-width:760px;
  margin:0 auto;
  padding:72px 64px 96px;
}
.post-body p{
  font-size:15px;
  line-height:2;
  color:var(--b);
  margin-bottom:24px;
}
.post-body h2{
  font-family:'Space Grotesk',sans-serif;
  font-size:clamp(20px,2.5vw,30px);
  font-weight:700;
  letter-spacing:-0.01em;
  line-height:1.3;
  margin:48px 0 20px;
  color:var(--gd);
}
.post-body h3{
  font-family:'Space Grotesk',sans-serif;
  font-size:clamp(16px,2vw,22px);
  font-weight:700;
  letter-spacing:-0.01em;
  line-height:1.4;
  margin:36px 0 16px;
}
.post-body ul,.post-body ol{
  margin:0 0 24px 1.5em;
  font-size:15px;
  line-height:2;
  color:var(--b);
}
.post-body blockquote{
  margin:32px 0;
  padding:20px 24px;
  background:var(--gl);
  border-left:3px solid var(--g);
  border-radius:0 10px 10px 0;
  font-size:15px;
  line-height:1.9;
  color:var(--gd);
}
.post-body img{
  width:100%;
  height:auto;
  border-radius:12px;
  margin:32px 0;
  object-fit:unset;
}
.post-body a{color:var(--g);text-decoration:underline;text-underline-offset:3px}
.post-back{
  max-width:760px;
  margin:0 auto;
  padding:0 64px 96px;
}
.post-back a{
  font-family:'Space Grotesk',sans-serif;
  font-size:11px;
  letter-spacing:0.12em;
  display:inline-flex;
  align-items:center;
  gap:8px;
  color:var(--gd);
  border-bottom:1px solid var(--gd);
  padding-bottom:2px;
  transition:opacity .2s;
}
.post-back a:hover{opacity:.7}

/* ── PAGE ── */
.page-wrap{
  margin-top:56px;
  max-width:900px;
  margin-left:auto;
  margin-right:auto;
  padding:80px 64px 120px;
}
.page-wrap h1{
  font-family:'Space Grotesk',sans-serif;
  font-size:clamp(28px,4vw,48px);
  font-weight:700;
  letter-spacing:-0.02em;
  line-height:1.2;
  margin-bottom:48px;
  padding-bottom:24px;
  border-bottom:1px solid var(--bd);
}
.page-wrap .entry-content p{font-size:15px;line-height:2;margin-bottom:20px;color:var(--b)}
.page-wrap .entry-content h2{
  font-family:'Space Grotesk',sans-serif;
  font-size:clamp(20px,2.5vw,28px);
  font-weight:700;
  letter-spacing:-0.01em;
  line-height:1.3;
  margin:40px 0 16px;
  color:var(--gd);
}
.page-wrap .entry-content h3{
  font-size:clamp(16px,2vw,20px);
  font-weight:600;
  margin:28px 0 12px;
}
.page-wrap .entry-content ul,.page-wrap .entry-content ol{
  margin:0 0 20px 1.5em;
  font-size:15px;
  line-height:2;
}

/* ── 404 ── */
.not-found{
  margin-top:56px;
  min-height:calc(100vh - 56px);
  display:flex;
  align-items:center;
  justify-content:center;
  flex-direction:column;
  text-align:center;
  padding:64px;
  background:var(--sand);
}
.not-found-num{
  font-family:'Space Grotesk',sans-serif;
  font-size:120px;
  font-weight:700;
  line-height:1;
  color:var(--bd);
  margin-bottom:24px;
}
.not-found h2{
  font-family:'Space Grotesk',sans-serif;
  font-size:clamp(20px,3vw,32px);
  font-weight:700;
  letter-spacing:-0.02em;
  margin-bottom:16px;
}
.not-found p{font-size:14px;color:var(--mid);margin-bottom:36px}

/* ── RESPONSIVE ── */
@media(max-width:768px){
  nav{padding:0 20px}
  .nav-links{display:none}

  .hero{height:400px;clip-path:polygon(0 0,100% 0,100% 96%,0 100%)}
  .hero-content{padding:0 24px 40px}
  .hero-h1{font-size:32px}
  .hero-sub{display:none}
  .hero-badge{display:none}

  .statement{
    clip-path:none;
    padding:32px 24px;
    flex-direction:column;
    gap:16px;
    margin-top:0;
  }
  .concept-section .zz-block{grid-template-columns:1fr}
  .zz-block.reverse{direction:ltr}
  .zz-img{min-height:240px}
  .zz-txt{padding:40px 24px}

  .brand-line{clip-path:none;margin:0;padding:56px 24px}

  .models{padding:48px 16px}
  .models-hd{flex-direction:column;align-items:flex-start;gap:12px;margin-bottom:24px}
  .models-grid{grid-template-columns:repeat(3,1fr)}
  .mc-info{padding:14px 12px}
  .mc-name{font-size:13px;margin-bottom:6px}
  .mc-desc{display:none}
  .mc-specs{display:none}
  .mc-price{font-size:13px;margin-bottom:10px}
  .mc-link{font-size:9px;padding:8px 12px}

  .journal{clip-path:none;margin:0;padding:56px 24px}
  .j-hd{flex-direction:column;align-items:flex-start;gap:16px;margin-bottom:28px}
  .j-grid{grid-template-columns:1fr;gap:20px}
  .j-grid .jc:nth-child(n+4){display:none}

  .howto{padding:56px 24px}
  .howto-inner{grid-template-columns:1fr;gap:40px}
  .howto-r{display:none}

  .instagram{clip-path:none;margin:0;padding:56px 24px}
  .ig-top{flex-direction:column;align-items:flex-start;gap:16px;margin-bottom:24px}
  .ig-grid{grid-template-columns:repeat(3,1fr)}
  .ig-cell:nth-child(n+4){display:none}

  footer{padding:48px 24px 28px}
  .footer-top{grid-template-columns:1fr;gap:32px;margin-bottom:32px}
  .f-cols{grid-template-columns:repeat(2,1fr)}
  .footer-btm{flex-direction:column;align-items:flex-start;gap:12px}

  .blog-hero{padding:56px 24px 40px}
  .blog-main{padding:40px 24px 64px}
  .blog-grid{grid-template-columns:1fr}

  .post-hero{height:280px}
  .post-hero-content{padding:0 24px 32px}
  .post-no-thumb{padding:56px 24px 32px}
  .post-body{padding:40px 24px 64px}
  .post-back{padding:0 24px 64px}

  .page-wrap{padding:48px 24px 80px}
}
