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

*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}

:root{
  --canvas:#f7f7f4;
  --canvas-soft:#fafaf7;
  --surface-card:#ffffff;
  --surface-strong:#e6e5e0;
  --primary:#f54e00;
  --primary-active:#d04200;
  --on-primary:#ffffff;
  --ink:#26251e;
  --body:#5a5852;
  --body-strong:#26251e;
  --muted:#807d72;
  --muted-soft:#a09c92;
  --hairline:#e6e5e0;
  --hairline-soft:#efeee8;
  --hairline-strong:#cfcdc4;
  --success:#1f8a65;
  --error:#cf2d56;
  --rounded-xs:4px;
  --rounded-sm:6px;
  --rounded-md:8px;
  --rounded-lg:12px;
  --rounded-xl:16px;
  --rounded-pill:9999px;
}

html{font-size:16px;scroll-behavior:smooth}
body{
  background:var(--canvas);
  color:var(--body);
  font-family:'Inter',system-ui,'Helvetica Neue',Helvetica,Arial,sans-serif;
  font-size:16px;
  font-weight:400;
  line-height:1.5;
  -webkit-font-smoothing:antialiased;
}

a{color:var(--primary);text-decoration:none}
a:hover{text-decoration:underline}
img{max-width:100%;height:auto;display:block}

.container{max-width:1200px;margin:0 auto;padding:0 24px}

nav.site-nav{
  background:var(--canvas);
  border-bottom:1px solid var(--hairline);
  height:64px;
  position:sticky;
  top:0;
  z-index:100;
}
nav.site-nav .nav-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  height:64px;
}
.nav-logo{
  font-size:18px;
  font-weight:600;
  color:var(--ink);
  letter-spacing:-0.3px;
  text-decoration:none;
}
.nav-logo span{color:var(--primary)}
.nav-links{
  display:flex;
  align-items:center;
  gap:28px;
  list-style:none;
}
.nav-links a{
  font-size:14px;
  font-weight:500;
  color:var(--ink);
  text-decoration:none;
  line-height:1.4;
}
.nav-links a:hover{color:var(--primary)}
.nav-hamburger{
  display:none;
  background:none;
  border:none;
  cursor:pointer;
  padding:8px;
  flex-direction:column;
  gap:5px;
}
.nav-hamburger span{
  display:block;
  width:22px;
  height:2px;
  background:var(--ink);
  border-radius:2px;
  transition:all .2s;
}

.hero-band{
  padding:80px 0;
  background:var(--canvas);
}
.hero-band h1{
  font-size:56px;
  font-weight:400;
  line-height:1.1;
  letter-spacing:-1.4px;
  color:var(--ink);
  max-width:720px;
  margin-bottom:20px;
}
.hero-band .hero-sub{
  font-size:16px;
  color:var(--body);
  max-width:560px;
  margin-bottom:32px;
  line-height:1.6;
}
.hero-meta{
  font-size:13px;
  color:var(--muted);
  margin-bottom:16px;
  letter-spacing:0.4px;
  text-transform:uppercase;
  font-weight:600;
}
.hero-image{
  margin-top:48px;
  border-radius:var(--rounded-lg);
  border:1px solid var(--hairline);
  overflow:hidden;
  max-height:460px;
}
.hero-image img{
  width:100%;
  height:460px;
  object-fit:cover;
}

.badge-pill{
  display:inline-block;
  background:var(--surface-strong);
  color:var(--ink);
  font-size:11px;
  font-weight:600;
  letter-spacing:0.88px;
  text-transform:uppercase;
  border-radius:var(--rounded-pill);
  padding:4px 10px;
  margin-bottom:16px;
}

.section{padding:80px 0}
.section-alt{background:var(--canvas-soft)}

.section-label{
  font-size:11px;
  font-weight:600;
  letter-spacing:0.88px;
  text-transform:uppercase;
  color:var(--muted);
  margin-bottom:12px;
}
.section-title{
  font-size:36px;
  font-weight:400;
  line-height:1.2;
  letter-spacing:-0.72px;
  color:var(--ink);
  margin-bottom:16px;
}
.section-sub{
  font-size:16px;
  color:var(--body);
  max-width:600px;
  line-height:1.6;
  margin-bottom:48px;
}

.cards-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}
.card{
  background:var(--surface-card);
  border:1px solid var(--hairline);
  border-radius:var(--rounded-lg);
  padding:24px;
}
.card-img{
  border-radius:var(--rounded-md);
  overflow:hidden;
  margin-bottom:16px;
  height:200px;
}
.card-img img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.card-label{
  font-size:11px;
  font-weight:600;
  letter-spacing:0.88px;
  text-transform:uppercase;
  color:var(--muted);
  margin-bottom:8px;
}
.card h3{
  font-size:18px;
  font-weight:600;
  color:var(--ink);
  line-height:1.4;
  margin-bottom:12px;
}
.card p{
  font-size:14px;
  color:var(--body);
  line-height:1.5;
  margin-bottom:16px;
}
.card-link{
  font-size:14px;
  font-weight:500;
  color:var(--primary);
  text-decoration:none;
}
.card-link:hover{text-decoration:underline}

.article-list{display:flex;flex-direction:column;gap:0}
.article-item{
  display:flex;
  gap:24px;
  padding:24px 0;
  border-bottom:1px solid var(--hairline-soft);
}
.article-item:last-child{border-bottom:none}
.article-item-img{
  width:200px;
  min-width:200px;
  height:140px;
  border-radius:var(--rounded-md);
  overflow:hidden;
}
.article-item-img img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.article-item-content{flex:1}
.article-item-label{
  font-size:11px;
  font-weight:600;
  letter-spacing:0.88px;
  text-transform:uppercase;
  color:var(--muted);
  margin-bottom:8px;
}
.article-item-content h3{
  font-size:22px;
  font-weight:400;
  letter-spacing:-0.11px;
  color:var(--ink);
  line-height:1.3;
  margin-bottom:10px;
}
.article-item-content p{
  font-size:15px;
  color:var(--body);
  line-height:1.5;
  margin-bottom:12px;
}
.article-item-meta{font-size:13px;color:var(--muted)}

.info-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:24px;
}
.info-card{
  background:var(--surface-card);
  border:1px solid var(--hairline);
  border-radius:var(--rounded-lg);
  padding:32px;
}
.info-card h3{
  font-size:22px;
  font-weight:400;
  letter-spacing:-0.11px;
  color:var(--ink);
  margin-bottom:12px;
}
.info-card p{
  font-size:15px;
  color:var(--body);
  line-height:1.6;
}

.contact-section{background:var(--canvas);padding:80px 0}
.contact-grid{
  display:grid;
  grid-template-columns:1fr 1.4fr;
  gap:48px;
  align-items:start;
}
.contact-info h2{
  font-size:36px;
  font-weight:400;
  letter-spacing:-0.72px;
  color:var(--ink);
  margin-bottom:16px;
}
.contact-info p{
  font-size:15px;
  color:var(--body);
  line-height:1.6;
  margin-bottom:24px;
}
.contact-detail{
  display:flex;
  align-items:flex-start;
  gap:12px;
  margin-bottom:16px;
  font-size:15px;
  color:var(--body);
}
.contact-detail strong{
  color:var(--ink);
  font-weight:600;
  min-width:80px;
}

.form-card{
  background:var(--surface-card);
  border:1px solid var(--hairline);
  border-radius:var(--rounded-lg);
  padding:32px;
}
.form-group{margin-bottom:20px}
.form-group label{
  display:block;
  font-size:14px;
  font-weight:500;
  color:var(--ink);
  margin-bottom:6px;
}
.form-group input,
.form-group textarea{
  width:100%;
  background:var(--surface-card);
  color:var(--ink);
  border:1px solid var(--hairline-strong);
  border-radius:var(--rounded-md);
  padding:12px 16px;
  height:44px;
  font-size:15px;
  font-family:inherit;
  outline:none;
  transition:border-color .15s;
}
.form-group textarea{height:auto;resize:vertical;min-height:100px}
.form-group input:focus,
.form-group textarea:focus{border-color:var(--primary)}
.form-group input::placeholder,
.form-group textarea::placeholder{color:var(--muted-soft)}

.btn-primary{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:var(--primary);
  color:var(--on-primary);
  font-size:14px;
  font-weight:500;
  font-family:inherit;
  padding:10px 18px;
  height:40px;
  border-radius:var(--rounded-md);
  border:none;
  cursor:pointer;
  text-decoration:none;
  transition:background .15s;
}
.btn-primary:hover{background:var(--primary-active)}
.btn-primary:disabled{opacity:.6;cursor:not-allowed}
.btn-full{width:100%;height:44px}

.form-message{
  display:none;
  padding:12px 16px;
  border-radius:var(--rounded-md);
  font-size:14px;
  margin-top:12px;
}
.form-message.success{
  background:#e8f5f0;
  color:var(--success);
  border:1px solid #b8dfd2;
  display:block;
}
.form-message.error-msg{
  background:#fdeef1;
  color:var(--error);
  border:1px solid #f4c0cb;
  display:block;
}

.article-page{padding:60px 0}
.article-header{margin-bottom:40px}
.article-header .article-meta{
  font-size:13px;
  color:var(--muted);
  margin-bottom:12px;
  letter-spacing:0.4px;
  text-transform:uppercase;
  font-weight:600;
}
.article-header h1{
  font-size:42px;
  font-weight:400;
  letter-spacing:-0.84px;
  color:var(--ink);
  line-height:1.15;
  margin-bottom:16px;
}
.article-header .article-intro{
  font-size:18px;
  color:var(--body);
  line-height:1.6;
  max-width:680px;
}
.article-cover{
  margin-bottom:40px;
  border-radius:var(--rounded-lg);
  overflow:hidden;
  border:1px solid var(--hairline);
}
.article-cover img{
  width:100%;
  height:400px;
  object-fit:cover;
}
.article-body{
  display:grid;
  grid-template-columns:1fr 300px;
  gap:48px;
  align-items:start;
}
.article-content{max-width:none}
.article-content h2{
  font-size:26px;
  font-weight:400;
  letter-spacing:-0.325px;
  color:var(--ink);
  margin:36px 0 14px;
}
.article-content h3{
  font-size:20px;
  font-weight:600;
  color:var(--ink);
  margin:28px 0 12px;
}
.article-content p{
  font-size:16px;
  color:var(--body);
  line-height:1.65;
  margin-bottom:18px;
}
.article-content ul,
.article-content ol{
  margin:0 0 18px 24px;
}
.article-content li{
  font-size:16px;
  color:var(--body);
  line-height:1.6;
  margin-bottom:6px;
}
.article-content img{
  border-radius:var(--rounded-md);
  margin:24px 0;
  border:1px solid var(--hairline);
}
.article-content .highlight-box{
  background:var(--surface-card);
  border:1px solid var(--hairline);
  border-left:3px solid var(--primary);
  border-radius:var(--rounded-md);
  padding:20px 24px;
  margin:24px 0;
}
.article-content .highlight-box p{
  margin-bottom:0;
  color:var(--ink);
}
.article-sidebar{
  position:sticky;
  top:80px;
}
.sidebar-card{
  background:var(--surface-card);
  border:1px solid var(--hairline);
  border-radius:var(--rounded-lg);
  padding:24px;
  margin-bottom:24px;
}
.sidebar-card h4{
  font-size:14px;
  font-weight:600;
  color:var(--ink);
  margin-bottom:16px;
  letter-spacing:0.4px;
  text-transform:uppercase;
}
.sidebar-card ul{list-style:none}
.sidebar-card li{margin-bottom:10px}
.sidebar-card a{
  font-size:14px;
  color:var(--body);
  text-decoration:none;
  line-height:1.4;
}
.sidebar-card a:hover{color:var(--primary)}

.page-content{
  max-width:760px;
  margin:0 auto;
  padding:60px 0;
}
.page-content h1{
  font-size:42px;
  font-weight:400;
  letter-spacing:-0.84px;
  color:var(--ink);
  margin-bottom:8px;
}
.page-content .page-meta{
  font-size:13px;
  color:var(--muted);
  margin-bottom:36px;
}
.page-content h2{
  font-size:24px;
  font-weight:400;
  letter-spacing:-0.24px;
  color:var(--ink);
  margin:36px 0 12px;
}
.page-content p{
  font-size:16px;
  color:var(--body);
  line-height:1.65;
  margin-bottom:16px;
}
.page-content ul{
  margin:0 0 16px 24px;
}
.page-content li{
  font-size:16px;
  color:var(--body);
  line-height:1.6;
  margin-bottom:6px;
}

footer.site-footer{
  background:var(--canvas);
  border-top:1px solid var(--hairline);
  padding:48px 0 32px;
}
.footer-inner{
  display:grid;
  grid-template-columns:2fr 1fr 1fr 1fr;
  gap:40px;
  margin-bottom:40px;
}
.footer-brand p{
  font-size:14px;
  color:var(--body);
  line-height:1.6;
  margin-top:12px;
  max-width:280px;
}
.footer-col h4{
  font-size:12px;
  font-weight:600;
  letter-spacing:0.6px;
  text-transform:uppercase;
  color:var(--ink);
  margin-bottom:14px;
}
.footer-col ul{list-style:none}
.footer-col li{margin-bottom:8px}
.footer-col a{
  font-size:14px;
  color:var(--body);
  text-decoration:none;
}
.footer-col a:hover{color:var(--primary)}
.footer-bottom{
  padding-top:24px;
  border-top:1px solid var(--hairline-soft);
  display:flex;
  justify-content:space-between;
  align-items:center;
}
.footer-bottom p{
  font-size:13px;
  color:var(--muted);
}

.cookie-banner{
  position:fixed;
  bottom:24px;
  left:50%;
  transform:translateX(-50%);
  background:var(--ink);
  color:var(--canvas);
  border-radius:var(--rounded-lg);
  padding:20px 24px;
  max-width:540px;
  width:calc(100% - 48px);
  z-index:999;
  display:flex;
  gap:16px;
  align-items:center;
  justify-content:space-between;
  box-shadow:0 4px 24px rgba(38,37,30,0.18);
}
.cookie-text{font-size:14px;line-height:1.5;flex:1}
.cookie-text a{color:var(--primary)}
.cookie-buttons{display:flex;gap:10px;flex-shrink:0}
.btn-cookie-accept{
  background:var(--primary);
  color:#fff;
  border:none;
  border-radius:var(--rounded-md);
  padding:8px 16px;
  font-size:14px;
  font-weight:500;
  cursor:pointer;
  font-family:inherit;
}
.btn-cookie-reject{
  background:transparent;
  color:var(--canvas);
  border:1px solid rgba(247,247,244,0.3);
  border-radius:var(--rounded-md);
  padding:8px 16px;
  font-size:14px;
  font-weight:500;
  cursor:pointer;
  font-family:inherit;
}
.btn-cookie-accept:hover{background:var(--primary-active)}
.btn-cookie-reject:hover{border-color:rgba(247,247,244,0.6)}

.breadcrumb{
  font-size:13px;
  color:var(--muted);
  margin-bottom:24px;
}
.breadcrumb a{color:var(--body);text-decoration:none}
.breadcrumb a:hover{color:var(--primary)}
.breadcrumb span{margin:0 6px}

.divider{
  height:1px;
  background:var(--hairline);
  margin:48px 0;
}

.related-articles{padding:48px 0}

@media(max-width:1024px){
  .hero-band h1{font-size:44px}
  .cards-grid{grid-template-columns:repeat(2,1fr)}
  .footer-inner{grid-template-columns:1fr 1fr}
}
@media(max-width:768px){
  .nav-links{display:none}
  .nav-links.open{
    display:flex;
    flex-direction:column;
    position:absolute;
    top:64px;
    left:0;
    right:0;
    background:var(--canvas);
    border-bottom:1px solid var(--hairline);
    padding:16px 24px;
    gap:16px;
    z-index:99;
  }
  .nav-hamburger{display:flex}
  .hero-band h1{font-size:32px;letter-spacing:-0.5px}
  .hero-band{padding:48px 0}
  .section{padding:48px 0}
  .section-title{font-size:28px}
  .cards-grid{grid-template-columns:1fr}
  .article-list .article-item{flex-direction:column}
  .article-item-img{width:100%;height:200px}
  .info-grid{grid-template-columns:1fr}
  .contact-grid{grid-template-columns:1fr}
  .article-body{grid-template-columns:1fr}
  .article-sidebar{position:static}
  .footer-inner{grid-template-columns:1fr}
  .footer-bottom{flex-direction:column;gap:8px;text-align:center}
  .cookie-banner{flex-direction:column;text-align:center}
  .cookie-buttons{justify-content:center}
}
@media(max-width:640px){
  .hero-band h1{font-size:26px}
  .article-header h1{font-size:28px}
  .page-content h1{font-size:28px}
}
