:root {
  --ink: #17211f;
  --muted: #626c68;
  --green: #173b36;
  --green-2: #286257;
  --sage: #dceae5;
  --paper: #fbfcfa;
  --white: #fff;
  --line: #d9e0dd;
  --coral: #f2a37f;
  --radius: 8px;
  --max: 1160px;
  --shadow: 0 22px 55px rgba(23, 59, 54, .13);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.62;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid var(--coral); outline-offset: 3px; }
.wrap { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
.skip-link { position: fixed; left: 16px; top: -80px; z-index: 100; padding: 10px 14px; background: var(--white); }
.skip-link:focus { top: 16px; }

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,.2);
}
.inner-page .site-header { position: sticky; top: 0; background: var(--green); }
.nav { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 900; text-decoration: none; white-space: nowrap; }
.brand-mark { width: 31px; height: 31px; position: relative; border: 2px solid; border-radius: 4px; transform: rotate(45deg); }
.brand-mark::before, .brand-mark::after { content: ""; position: absolute; height: 2px; background: currentColor; border-radius: 10px; }
.brand-mark::before { width: 16px; left: 6px; top: 8px; transform: rotate(-45deg); }
.brand-mark::after { width: 10px; left: 10px; top: 16px; transform: rotate(-45deg); }
.nav-links { display: flex; align-items: center; gap: 24px; }
.nav-links a { font-size: 14px; font-weight: 800; text-decoration: none; text-underline-offset: 5px; }
.nav-links a:hover { text-decoration: underline; }
.nav-cta { padding: 10px 14px; border: 1px solid rgba(255,255,255,.65); }
.menu-toggle { display: none; min-width: 48px; min-height: 44px; padding: 8px 10px; color: var(--white); background: transparent; border: 1px solid rgba(255,255,255,.55); font: inherit; font-weight: 800; cursor: pointer; }

.hero {
  min-height: 720px;
  position: relative;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background-image: linear-gradient(90deg, rgba(16,34,31,.92) 0%, rgba(17,38,34,.75) 43%, rgba(17,38,34,.08) 76%), url("assets/tak-offert-hero.webp");
  background-size: cover;
  background-position: center;
}
.hero-content { width: min(680px, 62vw); padding-top: 82px; animation: rise .75s cubic-bezier(.2,.75,.25,1) both; }
.eyebrow, .section-label { margin: 0 0 16px; color: #dbeee8; font-size: 13px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
h1, h2, h3, p { margin-top: 0; }
h1, h2 { font-family: Georgia, "Times New Roman", serif; font-weight: 500; letter-spacing: 0; text-wrap: balance; }
h1 { max-width: 700px; margin-bottom: 22px; font-size: clamp(48px, 6.7vw, 84px); line-height: 1.01; }
h2 { margin-bottom: 0; font-size: clamp(36px, 4.5vw, 56px); line-height: 1.08; }
h3 { margin-bottom: 10px; font-size: 21px; line-height: 1.25; }
.hero-lead { max-width: 610px; margin-bottom: 30px; color: rgba(255,255,255,.9); font-size: clamp(18px, 2vw, 22px); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.button { min-height: 52px; display: inline-flex; align-items: center; justify-content: center; gap: 9px; padding: 13px 20px; border: 1px solid transparent; border-radius: var(--radius); color: #27201c; background: var(--coral); font-weight: 850; text-decoration: none; transition: transform .18s ease, background .18s ease; }
.button:hover { transform: translateY(-2px); background: #ffb28f; }
.button-secondary { color: var(--white); background: transparent; border-color: rgba(255,255,255,.65); }
.button-secondary:hover { color: var(--ink); background: var(--white); }
.button-dark { color: var(--white); background: var(--green); }
.button-dark:hover { background: var(--green-2); }

.trust { color: var(--white); background: var(--green); }
.trust .wrap { min-height: 96px; display: grid; grid-template-columns: repeat(3, 1fr); align-items: center; }
.trust-item { display: flex; align-items: center; gap: 12px; padding: 18px 26px; border-right: 1px solid rgba(255,255,255,.16); }
.trust-item:first-child { padding-left: 0; }
.trust-item:last-child { border-right: 0; }
.check { flex: 0 0 auto; width: 26px; height: 26px; display: grid; place-items: center; border-radius: 50%; color: var(--green); background: #cce5dc; font-weight: 900; }
.trust-item b { display: block; font-size: 15px; }
.trust-item small { display: block; color: rgba(255,255,255,.7); font-size: 13px; }

.section { padding: 100px 0; }
.section-soft { background: #edf3f0; }
.section-white { background: var(--white); }
.section-head { display: grid; grid-template-columns: .7fr 1.3fr; gap: 72px; align-items: start; margin-bottom: 54px; }
.section-label { color: var(--green-2); }
.section-intro { max-width: 700px; margin: 18px 0 0; color: var(--muted); font-size: 18px; }

.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid #c7d4ce; border-bottom: 1px solid #c7d4ce; }
.service { min-height: 270px; display: flex; flex-direction: column; align-items: flex-start; padding: 30px; border-right: 1px solid #c7d4ce; }
.service:first-child { padding-left: 0; }
.service:last-child { border-right: 0; }
.service p { margin-bottom: 22px; color: var(--muted); }
.text-link { margin-top: auto; color: var(--green-2); font-weight: 850; text-decoration-thickness: 1px; text-underline-offset: 5px; }

.guide-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.guide-card { min-height: 270px; display: flex; flex-direction: column; align-items: flex-start; padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); }
.guide-card .tag { margin-bottom: 28px; color: var(--green-2); font-size: 12px; font-weight: 900; letter-spacing: .07em; text-transform: uppercase; }
.guide-card p { color: var(--muted); }
.guide-card .text-link { margin-top: auto; }

.compare-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 86px; align-items: start; }
.compare-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.compare-list li { display: grid; grid-template-columns: 34px 1fr; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.compare-list strong { color: var(--green-2); }
.compare-list p { margin: 2px 0 0; color: var(--muted); }

.faq-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: 80px; }
details { border-top: 1px solid var(--line); }
details:last-child { border-bottom: 1px solid var(--line); }
summary { position: relative; padding: 21px 44px 21px 0; list-style: none; cursor: pointer; font-weight: 850; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; position: absolute; right: 7px; top: 16px; color: var(--green-2); font-size: 27px; font-weight: 400; }
details[open] summary::after { content: "−"; }
details p { margin: -4px 45px 22px 0; color: var(--muted); }

.disclosure { padding: 68px 0; color: var(--white); background: var(--green); }
.disclosure-grid { display: grid; grid-template-columns: .7fr 1.3fr; gap: 72px; }
.disclosure .section-label { color: #cce5dc; }
.disclosure h2 { font-size: clamp(34px, 4vw, 50px); }
.disclosure p { margin-bottom: 13px; color: rgba(255,255,255,.76); }
.disclosure a { font-weight: 800; text-underline-offset: 4px; }

.owner { padding: 82px 0; background: #f1f2ef; }
.owner-grid { display: grid; grid-template-columns: .65fr 1.35fr; gap: 70px; }
.owner p { margin-bottom: 12px; color: var(--muted); }
.owner address { font-style: normal; color: var(--muted); }
.owner a { color: var(--green-2); font-weight: 800; text-underline-offset: 3px; }

.form-section { background: var(--white); }
.form-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: 76px; align-items: start; }
.form-intro { position: sticky; top: 110px; }
.form-intro h2 { margin-bottom: 20px; }
.form-intro p { color: var(--muted); font-size: 18px; }
.form-points { margin: 28px 0 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.form-points li { padding: 14px 0; border-bottom: 1px solid var(--line); color: #3f4946; }
.lead-form { padding: 34px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 17px; }
.field label { display: block; margin-bottom: 7px; font-size: 14px; font-weight: 850; }
.field input, .field select, .field textarea { width: 100%; min-height: 50px; padding: 12px 13px; border: 1px solid #bfcac5; border-radius: 4px; color: var(--ink); background: var(--white); font: inherit; }
.field textarea { min-height: 112px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--green-2); outline: 2px solid rgba(40,98,87,.16); }
.choice-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 17px; }
.choice { display: flex; gap: 9px; align-items: center; padding: 11px 12px; border: 1px solid var(--line); border-radius: 4px; background: var(--white); font-size: 14px; }
.choice input { accent-color: var(--green); }
.consent { display: flex; align-items: flex-start; gap: 10px; margin: 2px 0 20px; color: var(--muted); font-size: 13px; }
.consent input { margin-top: 5px; accent-color: var(--green); }
.consent a { color: var(--green-2); font-weight: 750; }
.honeypot { position: absolute; left: -10000px; }
.form-note, .form-status { margin: 13px 0 0; color: var(--muted); font-size: 13px; }
.form-status { min-height: 20px; color: var(--green-2); font-weight: 800; }
.form-status.error { color: #a43a2c; }
.lead-form button:disabled { cursor: wait; opacity: .65; }

.material-band { padding: 0; background: #edf3f0; }
.material-layout { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); min-height: 690px; }
.material-image { min-height: 690px; margin: 0; overflow: hidden; }
.material-image img { width: 100%; height: 100%; object-fit: cover; }
.material-copy { align-self: center; padding: 78px 8vw; }
.material-copy h2 { margin-bottom: 22px; }
.material-copy > p { color: var(--muted); }
.material-list { margin: 30px 0 0; }
.material-list div { display: grid; grid-template-columns: 130px 1fr; gap: 18px; padding: 15px 0; border-top: 1px solid #c7d4ce; }
.material-list dt { font-weight: 850; }
.material-list dd { margin: 0; color: var(--muted); }

.article-hero { padding: 92px 0 72px; color: var(--white); background: var(--green); }
.breadcrumb { margin: 0 0 18px; color: #cce5dc; font-size: 13px; }
.breadcrumb a { text-underline-offset: 4px; }
.article-hero h1 { max-width: 850px; margin-bottom: 20px; font-size: clamp(42px, 6vw, 72px); }
.article-hero p:last-child { max-width: 760px; margin-bottom: 0; color: rgba(255,255,255,.8); font-size: 19px; }
.article-layout { display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(250px, .6fr); gap: 74px; align-items: start; }
.article-body { max-width: 760px; }
.article-body h2 { margin: 64px 0 20px; font-size: clamp(31px, 4vw, 46px); }
.article-body h2:first-child { margin-top: 0; }
.article-body h3 { margin: 32px 0 10px; }
.article-body p, .article-body li { color: #3f4946; }
.article-body ul, .article-body ol { padding-left: 22px; }
.article-body li { margin-bottom: 8px; }
.article-body .source { padding: 18px; border-left: 3px solid var(--green-2); background: var(--sage); font-size: 14px; }
.article-body .source a { color: var(--green-2); font-weight: 800; }
.article-aside { position: sticky; top: 108px; padding: 24px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); }
.article-aside h2 { margin-bottom: 14px; font-family: inherit; font-size: 17px; font-weight: 850; }
.article-aside ul { margin: 0; padding: 0; list-style: none; }
.article-aside li + li { margin-top: 9px; }
.article-aside a { color: var(--green-2); font-size: 14px; font-weight: 750; text-underline-offset: 4px; }
.article-note { margin-top: 54px; padding: 26px; border-radius: var(--radius); background: var(--sage); }
.article-note p:last-child { margin-bottom: 0; }

footer { padding: 34px 0; color: rgba(255,255,255,.72); background: #102a25; font-size: 13px; }
.footer-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 50px; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 14px 22px; }
.footer-links a { text-underline-offset: 4px; }
.footer-bottom { display: flex; justify-content: space-between; gap: 24px; margin-top: 28px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.16); }

.reveal { opacity: 0; transform: translateY(20px); transition: opacity .55s ease, transform .55s ease; }
.reveal.visible { opacity: 1; transform: none; }
@keyframes rise { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }

@media (max-width: 900px) {
  .menu-toggle { display: block; }
  .nav-links { position: fixed; inset: 76px 0 auto; display: none; padding: 20px; color: var(--green); background: var(--white); box-shadow: var(--shadow); flex-direction: column; align-items: stretch; gap: 2px; }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 11px 0; }
  .nav-cta { color: var(--white); background: var(--green); text-align: center; }
  .hero { min-height: 760px; background-position: 63% center; }
  .hero-content { width: 100%; max-width: 620px; padding-top: 88px; }
  .trust .wrap { grid-template-columns: 1fr; padding-block: 12px; }
  .trust-item, .trust-item:first-child { padding: 10px 0; border-right: 0; }
  .section-head, .compare-layout, .faq-layout, .disclosure-grid, .owner-grid, .article-layout, .form-layout, .material-layout { grid-template-columns: 1fr; gap: 38px; }
  .form-intro { position: static; }
  .material-image { min-height: 520px; }
  .material-copy { padding: 70px 40px; }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .service, .service:first-child { padding: 26px; border-bottom: 1px solid #c7d4ce; }
  .service:nth-child(2) { border-right: 0; }
  .article-aside { position: static; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-links { justify-content: flex-start; }
}

@media (max-width: 580px) {
  .wrap { width: min(calc(100% - 28px), var(--max)); }
  .nav { min-height: 68px; }
  .nav-links { inset: 68px 0 auto; }
  .brand { font-size: 15px; }
  .hero { min-height: 720px; background-position: 70% center; }
  .hero-content { padding-top: 70px; }
  h1 { font-size: 43px; }
  .hero-lead { font-size: 17px; }
  .hero-actions { width: 100%; flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .section { padding: 72px 0; }
  .service-grid, .guide-grid { grid-template-columns: 1fr; }
  .service, .service:first-child { min-height: 0; padding: 24px 0; border-right: 0; }
  .guide-card { min-height: 0; padding: 24px; }
  .field-row, .choice-grid { grid-template-columns: 1fr; gap: 0; }
  .lead-form { padding: 22px; }
  .material-image { min-height: 430px; }
  .material-copy { padding: 60px 20px; }
  .material-list div { grid-template-columns: 1fr; gap: 4px; }
  .article-hero { padding: 68px 0 58px; }
  .article-hero h1 { font-size: 40px; }
  .article-body h2 { margin-top: 48px; }
  .footer-bottom { flex-direction: column; gap: 8px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
