
:root{
  --bg:#e6e6e6;
  --paper:#ededed;
  --text:#202020;
  --muted:#444;
  --dark:#252525;
  --frame:#3a3a3a;
  --max:1440px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  background:var(--bg);
  color:var(--text);
  font-family:'Inter',sans-serif;
}
img{max-width:100%;display:block}
a{text-decoration:none;color:inherit}
.site-header{
  background:var(--dark);
  color:#fff;
  position:sticky;
  top:0;
  z-index:1000;
}
.site-header__inner{
  max-width:var(--max);
  margin:0 auto;
  padding:20px 28px;
  display:flex;
  align-items:center;
  gap:18px;
}
.brand{
  min-width:240px;
}
.brand__title{
  display:block;
  font-family:'Oswald',sans-serif;
  font-size:28px;
  line-height:1;
  letter-spacing:.4px;
}
.brand__subtitle{
  display:block;
  margin-top:4px;
  font-size:14px;
  line-height:1.25;
}
.desktop-nav{
  margin-left:auto;
  display:flex;
  align-items:center;
  gap:34px;
}
.desktop-nav a{
  font-size:18px;
  font-weight:300;
}
.desktop-nav a.active{
  font-weight:600;
}
.desktop-nav a:hover,.lang-link:hover,.menu-toggle:hover,.mobile-panel a:hover{opacity:.78}
.lang-link{
  border:1px solid rgba(255,255,255,.45);
  border-radius:999px;
  padding:7px 10px;
  font-size:13px;
  line-height:1;
}
.menu-toggle{
  display:none;
  margin-left:8px;
  width:38px;
  height:28px;
  background:none;
  border:0;
  cursor:pointer;
  position:relative;
}
.menu-toggle span{
  position:absolute;
  left:0;right:0;
  height:3px;
  border-radius:999px;
  background:#fff;
  transition:transform .25s ease, opacity .25s ease, top .25s ease;
}
.menu-toggle span:nth-child(1){top:2px}
.menu-toggle span:nth-child(2){top:12px}
.menu-toggle span:nth-child(3){top:22px}
.menu-toggle.is-open span:nth-child(1){top:12px;transform:rotate(45deg)}
.menu-toggle.is-open span:nth-child(2){opacity:0}
.menu-toggle.is-open span:nth-child(3){top:12px;transform:rotate(-45deg)}
.mobile-panel{
  display:none;
  background:#1f1f1f;
  color:#fff;
  border-top:1px solid rgba(255,255,255,.08);
}
.mobile-panel.is-open{display:block}
.mobile-panel__inner{
  max-width:var(--max);
  margin:0 auto;
  padding:18px 28px 24px;
  display:flex;
  flex-direction:column;
  gap:14px;
}
.mobile-panel a{
  font-size:18px;
  font-weight:400;
}
.page-shell{
  max-width:var(--max);
  margin:0 auto;
  padding:0 22px 22px;
}
.page-frame{
  position:relative;
  min-height:calc(100vh - 96px);
  background:var(--paper);
  border:3px solid var(--frame);
  overflow:hidden;
  margin:0;
  padding:42px 46px 34px;
}
.page-frame::before{
  content:"";
  position:absolute;
  left:-20px;
  top:35%;
  width:42px;
  height:160px;
  border-radius:22px;
  background:#1f1f1f;
}
.dots{
  position:absolute;
  font-size:40px;
  font-weight:700;
  line-height:.7;
  letter-spacing:2px;
  user-select:none;
}
.dots.top-left{left:28px;top:16px}
.dots.top-right{right:28px;top:16px}
.dots.bottom-left{left:28px;bottom:18px}
.dots.bottom-right{right:28px;bottom:18px}
.hero{
  text-align:center;
}
.hero__logo{
  width:min(100%,540px);
  margin:0 auto 12px;
}
.hero__title{
  margin:8px 0 0;
  font-family:'Oswald',sans-serif;
  font-size:clamp(56px,8vw,86px);
  line-height:.96;
  letter-spacing:-.5px;
}
.hero__subtitle{
  margin-top:6px;
  margin-bottom:28px;
  font-size:clamp(26px,4vw,46px);
  font-weight:300;
  letter-spacing:18px;
}
.hero__image{
  width:min(100%,1200px);
  height:295px;
  object-fit:cover;
  margin:0 auto 36px;
}
.divider{
  width:min(560px,60%);
  height:4px;
  background:#2e2e2e;
  margin:0 auto 28px;
}
.pill-row{
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:18px;
}
.pill{
  min-width:180px;
  padding:14px 26px;
  text-align:center;
  border:3px solid #3e3e3e;
  border-radius:999px;
  background:rgba(255,255,255,.24);
  font-size:20px;
}
.split{
  min-height:calc(100vh - 170px);
  display:grid;
  gap:56px;
  align-items:center;
}
.split--left-image{grid-template-columns:.95fr 1.05fr}
.split--right-image{grid-template-columns:1.05fr .95fr}
.section-image{
  width:100%;
  max-width:470px;
  height:640px;
  object-fit:cover;
  margin:0 auto;
}
.section-title{
  margin:0 0 16px;
  font-family:'Oswald',sans-serif;
  font-size:clamp(52px,6vw,74px);
  line-height:.98;
  letter-spacing:-.5px;
}
.section-divider{
  width:min(360px,100%);
  height:4px;
  background:#2e2e2e;
  margin:0 0 22px;
}
.lead,.body-text,.point-text,.small-copy{
  font-size:21px;
  line-height:1.52;
  color:#303030;
}
.collection-list,.point-list{
  display:grid;
  gap:24px;
  margin-top:24px;
}
.collection-item,.point-item{
  display:grid;
  grid-template-columns:92px 1fr;
  gap:18px;
}
.num{
  font-family:'Oswald',sans-serif;
  font-size:54px;
  line-height:.9;
}
.item-title{
  font-size:22px;
  font-weight:700;
  margin-bottom:4px;
}
.info-columns{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:38px;
  margin-top:28px;
}
.info-title{
  font-size:23px;
  font-weight:800;
  margin-bottom:10px;
}
.image-stack{
  display:flex;
  flex-direction:column;
  gap:18px;
  align-items:center;
}
.image-stack img{
  width:100%;
  max-width:360px;
  height:330px;
  object-fit:cover;
}
.blog-row{
  min-height:calc(100vh - 170px);
  display:grid;
  grid-template-columns:.95fr 1.05fr;
  gap:56px;
  align-items:center;
}
.blog-copy{
  display:flex;
  align-items:flex-start;
  gap:26px;
  margin-top:36px;
}
.blog-year{
  font-family:'Oswald',sans-serif;
  font-size:72px;
  line-height:.9;
}
.contact-wrap{
  min-height:calc(100vh - 170px);
  display:grid;
  place-items:center;
}
.contact-box{
  width:100%;
  max-width:820px;
}
.contact-info{
  display:grid;
  gap:10px;
  margin-top:26px;
  font-size:23px;
  line-height:1.5;
}
.contact-logo{
  width:min(100%,420px);
  margin:34px auto 14px;
}
.footer-nav{
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:18px;
  font-size:17px;
}
@media (max-width:1024px){
  .desktop-nav{display:none}
  .menu-toggle{display:block;margin-left:auto}
  .split,.blog-row,.info-columns{grid-template-columns:1fr}
  .section-image,.image-stack img{height:auto;max-width:100%}
  .page-frame{padding:36px 26px 30px}
  .page-frame::before{display:none}
  .hero__image{height:220px}
}
@media (max-width:720px){
  .site-header__inner{padding:16px 18px}
  .brand{min-width:0}
  .brand__title{font-size:22px}
  .brand__subtitle{font-size:12px}
  .page-shell{padding:0 10px 10px}
  .page-frame{padding:28px 16px 24px}
  .dots{font-size:30px}
  .hero__subtitle{letter-spacing:8px}
  .divider,.section-divider{height:3px}
  .pill{width:100%;min-width:0}
  .collection-item,.point-item{grid-template-columns:70px 1fr}
  .num{font-size:40px}
  .lead,.body-text,.point-text,.small-copy{font-size:18px}
  .blog-copy{flex-direction:column;gap:14px}
  .blog-year{font-size:56px}
  .contact-info{font-size:19px}
}
