@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Manrope:wght@500;600;700;800&display=swap');

:root {
  --ink: #17221c;
  --paper: #f4f1e9;
  --cream: #fffdf7;
  --lime: #c9f269;
  --forest: #184c36;
  --rust: #df603c;
  --blue: #b8dbe3;
  --line: rgba(23, 34, 28, 0.16);
  --muted: #607068;
  --shadow: 0 22px 60px rgba(23, 34, 28, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font: 16px/1.65 "DM Sans", sans-serif;
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .22;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.08'/%3E%3C/svg%3E");
  z-index: 10;
}
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; }
button, input, textarea, select { font: inherit; }
.container { width: min(1160px, calc(100% - 40px)); margin-inline: auto; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 16px;
  color: var(--forest);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 24px; height: 2px; background: currentColor; }
h1, h2, h3 { margin: 0; font-family: "Manrope", sans-serif; line-height: 1.08; letter-spacing: -.04em; }
h1 { font-size: clamp(3rem, 7vw, 6.8rem); }
h2 { font-size: clamp(2.2rem, 4.6vw, 4.5rem); }
h3 { font-size: 1.45rem; }
p { margin: 0 0 1rem; }
.lead { max-width: 680px; font-size: clamp(1.12rem, 2vw, 1.35rem); color: #405048; }
.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid var(--ink);
  border-radius: 100px;
  background: var(--ink);
  color: white;
  font-weight: 700;
  transition: transform .2s, background .2s, color .2s;
}
.btn:hover { transform: translateY(-2px); background: var(--lime); color: var(--ink); }
.btn.alt { background: transparent; color: var(--ink); }
.btn.alt:hover { background: var(--cream); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(244, 241, 233, .91);
  backdrop-filter: blur(16px);
}
.nav { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font: 800 1rem/1 "Manrope", sans-serif;
  letter-spacing: -.02em;
}
.brand-mark {
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  border-radius: 11px;
  overflow: hidden;
  box-shadow: 0 8px 18px rgba(24, 76, 54, .18);
}
.brand-mark img { width: 100%; height: 100%; object-fit: cover; }
.brand-wordmark { display: grid; gap: 3px; line-height: 1; }
.brand-wordmark strong { font-size: .88rem; letter-spacing: -.03em; text-transform: none; }
.brand-wordmark small { color: var(--muted); font: 700 .62rem/1 "DM Sans", sans-serif; letter-spacing: .16em; }
.site-footer .brand-wordmark strong { color: white; }
.site-footer .brand-wordmark small { color: #aebdb6; }
.nav-links { display: flex; align-items: center; gap: 28px; font-size: .92rem; font-weight: 600; }
.nav-links a { position: relative; }
.nav-links a::after { content:""; position:absolute; left:0; right:100%; bottom:-6px; height:2px; background:var(--rust); transition:right .2s; }
.nav-links a:hover::after, .nav-links a.active::after { right:0; }
.menu-btn { display: none; border: 0; background: none; padding: 8px; font-weight: 700; }

.hero { padding: 58px 0 80px; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; align-items: center; gap: 62px; }
.hero h1 em { display: block; color: var(--forest); font-style: normal; }
.hero-copy .lead { margin: 26px 0 32px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-visual { position: relative; min-height: 610px; }
.hero-photo {
  position: absolute;
  inset: 0 0 35px 40px;
  overflow: hidden;
  border-radius: 210px 210px 26px 26px;
  box-shadow: var(--shadow);
}
.hero-photo img { height: 100%; object-fit: cover; }
.stamp {
  position: absolute;
  left: 0;
  bottom: 0;
  display: grid;
  place-items: center;
  width: 142px;
  height: 142px;
  padding: 22px;
  border-radius: 50%;
  background: var(--lime);
  font: 800 .88rem/1.25 "Manrope", sans-serif;
  text-align: center;
  transform: rotate(-9deg);
}
.route-tag {
  position: absolute;
  top: 54px;
  right: -14px;
  padding: 13px 18px;
  border-radius: 6px;
  background: var(--cream);
  box-shadow: var(--shadow);
  font-size: .82rem;
  font-weight: 700;
}

.ticker { overflow: hidden; border-block: 1px solid var(--ink); background: var(--forest); color: white; }
.ticker-track { display: flex; width: max-content; animation: ticker 28s linear infinite; }
.ticker span { padding: 18px 32px; font: 700 .8rem/1 "Manrope", sans-serif; letter-spacing: .12em; text-transform: uppercase; }
.ticker span::after { content: "●"; margin-left: 64px; color: var(--lime); }
@keyframes ticker { to { transform: translateX(-50%); } }

.section { padding: 110px 0; }
.section-head { display: flex; justify-content: space-between; align-items: end; gap: 40px; margin-bottom: 46px; }
.section-head p { max-width: 470px; color: var(--muted); }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--cream);
  transition: transform .25s, box-shadow .25s;
}
.card:hover { transform: translateY(-7px); box-shadow: var(--shadow); }
.card-image { height: 260px; overflow: hidden; }
.card-image img { height: 100%; object-fit: cover; transition: transform .5s; }
.card:hover img { transform: scale(1.04); }
.card-body { padding: 26px; }
.tag { display: inline-block; margin-bottom: 13px; color: var(--rust); font-size: .72rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.card p { margin: 13px 0 20px; color: var(--muted); }
.text-link { font-weight: 800; }
.text-link::after { content: " →"; color: var(--rust); }

.feature { background: var(--ink); color: white; }
.feature-grid { display: grid; grid-template-columns: .95fr 1.05fr; }
.feature-image { min-height: 630px; }
.feature-image img { height: 100%; object-fit: cover; }
.feature-copy { display: flex; flex-direction: column; justify-content: center; padding: 80px clamp(36px, 7vw, 110px); }
.feature-copy .eyebrow { color: var(--lime); }
.feature-copy p { margin: 26px 0 30px; color: #bec9c3; }
.feature .btn { border-color: var(--lime); background: var(--lime); color: var(--ink); align-self: flex-start; }
.stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; border-top: 1px solid rgba(255,255,255,.16); margin-top: 46px; padding-top: 30px; }
.stat strong { display:block; color:var(--lime); font: 800 1.8rem/1 "Manrope",sans-serif; }
.stat span { display:block; margin-top:8px; color:#98a69f; font-size:.75rem; }

.guide-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.guide-item {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 22px;
  padding: 28px;
  border-top: 1px solid var(--line);
}
.number { color: var(--rust); font: 800 1rem "Manrope",sans-serif; }
.guide-item p { margin-top: 10px; color: var(--muted); }
.newsletter {
  display: grid;
  grid-template-columns: 1fr .8fr;
  gap: 60px;
  align-items: center;
  padding: 70px;
  border-radius: 24px;
  background: var(--blue);
}
.signup { display: flex; gap: 10px; }
.signup input {
  width: 100%;
  min-height: 54px;
  padding: 0 18px;
  border: 1px solid var(--ink);
  border-radius: 100px;
  background: rgba(255,255,255,.66);
}
.form-note { margin-top: 10px; font-size: .75rem; color: var(--muted); }

.page-hero { padding: 92px 0 68px; border-bottom: 1px solid var(--line); }
.page-hero h1 { max-width: 920px; font-size: clamp(3rem, 6vw, 6rem); }
.page-hero .lead { margin-top: 24px; }
.article-layout { display: grid; grid-template-columns: 260px 1fr; gap: 70px; padding: 80px 0 110px; }
.article-aside { position: sticky; top: 120px; align-self: start; }
.article-aside a { display: block; padding: 11px 0; border-bottom: 1px solid var(--line); color: var(--muted); font-size: .88rem; }
.article { max-width: 790px; }
.article h2 { margin: 62px 0 22px; font-size: clamp(2rem, 4vw, 3.5rem); }
.article h2:first-child { margin-top: 0; }
.article h3 { margin: 34px 0 12px; }
.article p, .article li { color: #45564d; }
.article img { margin: 38px 0; max-height: 490px; object-fit: cover; border-radius: 18px; }
.article ul, .article ol { padding-left: 22px; }
.info-box { margin: 34px 0; padding: 28px; border-left: 5px solid var(--rust); background: var(--cream); }
.table-wrap { overflow-x: auto; margin: 34px 0; }
table { width: 100%; border-collapse: collapse; background: var(--cream); }
th, td { padding: 15px; border: 1px solid var(--line); text-align: left; vertical-align: top; }
th { font-family:"Manrope",sans-serif; }

.contact-grid { display:grid; grid-template-columns:.8fr 1.2fr; gap:70px; padding:80px 0 110px; }
.contact-details { padding: 36px; border-radius: 18px; background: var(--forest); color: white; }
.contact-details p { color: #c7d3cc; }
.contact-item { padding: 24px 0; border-bottom: 1px solid rgba(255,255,255,.17); }
.contact-item small { display:block; color:var(--lime); font-weight:800; text-transform:uppercase; letter-spacing:.12em; }
.contact-item a, .contact-item span { display:block; margin-top:6px; }
.form-grid { display:grid; grid-template-columns:1fr 1fr; gap:18px; }
.field { display:flex; flex-direction:column; gap:8px; }
.field.full { grid-column:1/-1; }
.field label { font-weight:700; font-size:.86rem; }
.field input, .field textarea, .field select { width:100%; padding:15px 17px; border:1px solid var(--line); border-radius:9px; background:var(--cream); }
.field textarea { min-height:160px; resize:vertical; }
.form-status { display:none; margin-top:18px; padding:14px; border-radius:8px; background:#dcedbd; }

.site-footer { background: #102a20; color: white; padding: 75px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.3fr .7fr .7fr .9fr; gap: 50px; }
.footer-brand p { max-width: 330px; margin-top: 20px; color: #aebdb6; }
.footer-title { margin-bottom: 18px; color: var(--lime); font: 800 .76rem "Manrope",sans-serif; letter-spacing:.13em; text-transform:uppercase; }
.footer-links a { display:block; margin:10px 0; color:#c2cec8; font-size:.9rem; }
.footer-links a:hover { color: white; }
.copyright { display:flex; justify-content:space-between; gap:20px; margin-top:58px; padding-top:24px; border-top:1px solid rgba(255,255,255,.14); color:#8fa098; font-size:.78rem; }

.cookie-banner {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 40;
  width: min(420px, calc(100% - 28px));
  display: none;
}
.cookie-banner.is-visible { display: block; animation: cookieIn .35s ease; }
@keyframes cookieIn {
  from { opacity: 0; transform: translateY(18px) rotate(1.5deg); }
  to { opacity: 1; transform: translateY(0) rotate(0); }
}
.cookie-card {
  position: relative;
  padding: 28px 24px 22px;
  border: 1.5px solid var(--ink);
  border-radius: 4px 22px 18px 18px;
  background:
    linear-gradient(135deg, rgba(201,242,105,.35), transparent 42%),
    var(--cream);
  box-shadow: 12px 16px 0 rgba(24, 76, 54, .14), var(--shadow);
}
.cookie-card::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 28px;
  width: 54px;
  height: 10px;
  border: 1.5px solid var(--ink);
  border-top: 0;
  border-radius: 0 0 8px 8px;
  background: var(--paper);
}
.cookie-kicker {
  display: inline-block;
  margin-bottom: 12px;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--forest);
  color: var(--lime);
  font: 800 .68rem/1 "Manrope", sans-serif;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.cookie-card p { margin: 0 0 18px; color: #45564d; font-size: .94rem; }
.cookie-card a { color: var(--forest); text-decoration: underline; text-underline-offset: 3px; }
.cookie-actions { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.cookie-actions .btn { min-height: 44px; padding: 0 18px; }
.cookie-actions .linkish { margin-left: auto; font-size: .82rem; font-weight: 700; color: var(--muted); text-decoration: none; }

.blog-hero { padding: 72px 0 34px; }
.blog-hero h1 { max-width: 920px; }
.blog-featured {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 0;
  margin: 28px 0 70px;
  border: 1px solid var(--ink);
  background: var(--cream);
  overflow: hidden;
}
.blog-featured-media { min-height: 460px; position: relative; }
.blog-featured-media img { height: 100%; object-fit: cover; }
.blog-featured-copy { display: flex; flex-direction: column; justify-content: space-between; padding: 42px; }
.blog-meta { display: flex; flex-wrap: wrap; gap: 14px; color: var(--muted); font-size: .82rem; font-weight: 700; }
.blog-meta span { display: inline-flex; align-items: center; gap: 8px; }
.blog-meta span::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--rust); }
.blog-featured h2 { margin: 18px 0; font-size: clamp(2rem, 4vw, 3.4rem); }
.blog-list { display: grid; gap: 0; border-top: 1px solid var(--ink); }
.blog-row {
  display: grid;
  grid-template-columns: 180px 1fr 140px;
  gap: 28px;
  align-items: center;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}
.blog-row:hover { background: linear-gradient(90deg, rgba(201,242,105,.22), transparent 70%); }
.blog-row-thumb { height: 110px; overflow: hidden; border-radius: 4px 40px 4px 4px; }
.blog-row-thumb img { height: 100%; object-fit: cover; }
.blog-row h3 { margin-bottom: 8px; font-size: 1.55rem; }
.blog-row p { margin: 0; color: var(--muted); max-width: 620px; }
.blog-row-read { justify-self: end; font-weight: 800; color: var(--forest); }
.blog-row-read::after { content: " ↗"; color: var(--rust); }

.post-hero { padding: 56px 0 0; }
.post-hero-inner { display: grid; grid-template-columns: .9fr 1.1fr; gap: 48px; align-items: end; }
.post-kicker { display: flex; flex-wrap: wrap; gap: 18px; margin-bottom: 18px; color: var(--muted); font-size: .84rem; font-weight: 700; }
.post-hero h1 { font-size: clamp(2.6rem, 5.4vw, 4.8rem); max-width: 14ch; }
.post-deck { margin-top: 20px; max-width: 38ch; color: #405048; font-size: 1.18rem; }
.post-cover { min-height: 520px; overflow: hidden; border-radius: 180px 18px 18px 18px; box-shadow: var(--shadow); }
.post-cover img { height: 100%; min-height: 520px; object-fit: cover; }
.post-shell { display: grid; grid-template-columns: 210px minmax(0, 720px) 1fr; gap: 48px; padding: 64px 0 110px; }
.post-rail { position: sticky; top: 110px; align-self: start; }
.post-rail .tag { margin-bottom: 18px; }
.post-rail a { display: block; margin: 10px 0; color: var(--muted); font-size: .88rem; }
.post-body > * { max-width: 68ch; }
.post-body h2 { margin: 52px 0 18px; font-size: clamp(1.8rem, 3vw, 2.7rem); }
.post-body h2:first-child { margin-top: 0; }
.post-body h3 { margin: 30px 0 10px; }
.post-body p, .post-body li { color: #45564d; }
.post-body img { margin: 34px 0; max-height: 460px; object-fit: cover; border-radius: 16px; }
.post-body blockquote {
  margin: 36px 0;
  padding: 8px 0 8px 24px;
  border-left: 4px solid var(--rust);
  color: var(--ink);
  font: 700 1.35rem/1.35 "Manrope", sans-serif;
  letter-spacing: -.03em;
}
.field-note {
  margin: 34px 0;
  padding: 26px;
  background: var(--blue);
  border-radius: 4px 28px 4px 4px;
}
.field-note strong { display: block; margin-bottom: 8px; font-family: "Manrope", sans-serif; }
.beside-panel {
  position: sticky;
  top: 110px;
  align-self: start;
  padding: 22px;
  border: 1px dashed rgba(23,34,28,.35);
  background: rgba(255,253,247,.7);
}
.beside-panel h3 { margin-bottom: 10px; font-size: 1.05rem; }
.beside-panel p, .beside-panel li { color: var(--muted); font-size: .9rem; }
.post-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 56px;
  max-width: none !important;
}
.post-nav a {
  display: block;
  padding: 22px;
  border: 1px solid var(--line);
  background: var(--cream);
}
.post-nav a span { display: block; margin-bottom: 8px; color: var(--muted); font-size: .75rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.post-nav a strong { font-family: "Manrope", sans-serif; font-size: 1.05rem; }

@media (max-width: 900px) {
  .nav-links { position: fixed; inset: 82px 0 auto; display:none; padding:28px 20px; flex-direction:column; align-items:flex-start; background:var(--paper); border-bottom:1px solid var(--line); }
  .nav-links.open { display:flex; }
  .menu-btn { display:block; }
  .hero-grid, .feature-grid, .newsletter, .contact-grid { grid-template-columns:1fr; }
  .hero-visual { min-height:500px; }
  .hero-photo { left:20px; }
  .cards { grid-template-columns:1fr 1fr; }
  .article-layout { grid-template-columns:1fr; }
  .article-aside { position:static; display:flex; flex-wrap:wrap; gap:10px; }
  .article-aside a { border:1px solid var(--line); border-radius:100px; padding:7px 13px; }
  .footer-grid { grid-template-columns:1fr 1fr; }
  .blog-featured, .post-hero-inner, .post-shell { grid-template-columns:1fr; }
  .blog-row { grid-template-columns: 120px 1fr; }
  .blog-row-read { display:none; }
  .post-cover, .post-cover img { min-height: 360px; border-radius: 110px 14px 14px 14px; }
  .post-rail, .beside-panel { position: static; }
  .cookie-banner { right: 14px; left: 14px; width: auto; bottom: 14px; }
}
@media (max-width: 620px) {
  .container { width:min(100% - 28px,1160px); }
  .hero { padding-top:36px; }
  .hero-grid { gap:36px; }
  .hero-visual { min-height:410px; }
  .hero-photo { inset:0 0 25px 12px; border-radius:120px 120px 18px 18px; }
  .stamp { width:110px; height:110px; font-size:.72rem; }
  .section { padding:76px 0; }
  .section-head { display:block; }
  .section-head p { margin-top:20px; }
  .cards, .guide-grid, .form-grid { grid-template-columns:1fr; }
  .field.full { grid-column:auto; }
  .feature-image { min-height:420px; }
  .feature-copy { padding:60px 24px; }
  .stats { grid-template-columns:1fr; gap:22px; }
  .newsletter { padding:42px 24px; gap:30px; }
  .signup { flex-direction:column; }
  .article-layout { padding-top:50px; gap:38px; }
  .contact-grid { gap:30px; padding-top:50px; }
  .footer-grid { grid-template-columns:1fr; gap:30px; }
  .copyright { flex-direction:column; }
  .blog-row { grid-template-columns: 1fr; }
  .blog-row-thumb { height: 180px; }
  .post-nav { grid-template-columns: 1fr; }
  .cookie-actions .linkish { margin-left: 0; width: 100%; }
}
