:root {
  --ink: #222020;
  --muted: #6f6864;
  --line: #e9e4dc;
  --surface: #f6f3ee;
  --surface-strong: #efe4d7;
  --royal: #ad8358;
  --royal-dark: #80613f;
  --champagne: #ddb157;
  --white: #fff;
  --shadow: 0 20px 60px rgba(45, 38, 31, 0.11);
  --radius: 24px;
  --font: "Atkinson Hyperlegible", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--font);
  line-height: 1.55;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
p, h1, h2, h3 { margin-top: 0; }

.site-header {
  position: fixed;
  z-index: 20;
  inset: 0 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  padding: 14px clamp(18px, 5vw, 64px);
  color: var(--white);
  transition: 180ms ease;
}
.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(255,255,255,.95);
  box-shadow: 0 12px 34px rgba(34,32,32,.09);
  backdrop-filter: blur(14px);
}
.brand, .nav a, .header-action, .button, .footer a { text-decoration: none; }
.brand { display: inline-flex; align-items: center; gap: 11px; font-weight: 700; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  overflow: hidden;
  border-radius: 50%;
  background: rgba(255,255,255,.94);
  box-shadow: 0 8px 24px rgba(34,32,32,.11);
}
.brand-mark img { width: 74%; height: 74%; object-fit: contain; }
.brand strong, .brand small { display: block; line-height: 1.05; }
.brand small { margin-top: 3px; font-size: .7rem; text-transform: uppercase; opacity: .75; }
.nav { display: flex; gap: clamp(16px,3vw,36px); font-size: .91rem; font-weight: 700; }
.header-action {
  justify-self: end;
  padding: 9px 18px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-weight: 700;
}

.hero {
  position: relative;
  min-height: 88vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 128px clamp(18px,6vw,84px) 66px;
  color: var(--white);
}
.hero-media, .hero-overlay { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 42%; }
.hero-overlay {
  background:
    linear-gradient(90deg, rgba(27,23,20,.9), rgba(69,53,41,.56) 54%, rgba(55,43,35,.08)),
    linear-gradient(0deg, rgba(27,23,20,.56), transparent 58%);
}
.hero-content { position: relative; max-width: 700px; }
.eyebrow {
  margin-bottom: 10px;
  color: var(--royal-dark);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.hero .eyebrow, .final-cta .eyebrow { color: var(--champagne); }
[id] { scroll-margin-top: 92px; }
h1 { max-width: 720px; margin-bottom: 18px; font-size: clamp(2.4rem,4.6vw,4.8rem); line-height: 1.03; }
h2 { margin-bottom: 16px; font-size: clamp(1.85rem,3.1vw,3.15rem); line-height: 1.08; }
h3 { margin-bottom: 10px; font-size: 1.18rem; line-height: 1.2; }
.hero-copy { max-width: 610px; color: rgba(255,255,255,.9); font-size: clamp(1rem,1.3vw,1.18rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 27px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
}
.button.primary { color: var(--white); background: linear-gradient(135deg,var(--royal),var(--royal-dark)); box-shadow: 0 14px 30px rgba(128,97,63,.26); }
.button.ghost { color: var(--white); border-color: rgba(255,255,255,.62); background: rgba(255,255,255,.08); }

.section { padding: clamp(62px,8vw,102px) clamp(18px,6vw,84px); }
.section-heading { max-width: 790px; }
.section-heading.center { margin: 0 auto 36px; text-align: center; }
.section-heading.center > p:last-child { color: var(--muted); }
.intro {
  display: grid;
  grid-template-columns: minmax(280px,.9fr) minmax(300px,1fr);
  gap: clamp(30px,7vw,90px);
  background: radial-gradient(circle at top left,rgba(221,177,87,.16),transparent 36%),var(--surface);
}
.intro-copy { color: var(--muted); font-size: 1.04rem; }
.intro-copy p { padding: 22px 0; border-bottom: 1px solid var(--line); }

.procedure-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 18px; }
.procedure-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 40px rgba(58,47,38,.07);
}
.procedure-media { height: 210px; overflow: hidden; background: var(--surface); }
.procedure-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.procedure-card:hover .procedure-media img { transform: scale(1.035); }
.procedure-content { padding: 23px; }
.procedure-content > span { color: var(--royal); font-size: .73rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.procedure-content h3 { margin-top: 9px; }
.procedure-content p { color: var(--muted); }
.procedure-content strong { color: var(--royal-dark); font-size: .93rem; }
.image-source { margin: 22px 0 0; color: var(--muted); font-size: .78rem; text-align: center; }

.assessment {
  display: grid;
  grid-template-columns: minmax(280px,.9fr) minmax(340px,1fr);
  align-items: center;
  gap: clamp(32px,7vw,92px);
  background: var(--surface);
}
.assessment-image { overflow: hidden; min-height: 480px; border-radius: var(--radius); box-shadow: var(--shadow); }
.assessment-image img { width: 100%; height: 100%; min-height: 480px; object-fit: cover; }
.steps { display: grid; gap: 13px; margin: 28px 0 0; padding: 0; list-style: none; }
.steps li { display: flex; align-items: center; gap: 13px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.steps span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  border-radius: 50%;
  color: var(--royal-dark);
  background: #ead6bd;
  font-weight: 700;
}

.final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  padding: clamp(56px,7vw,86px) clamp(18px,6vw,84px);
  color: var(--white);
  background: linear-gradient(125deg,#2b2521,#5d4939);
}
.final-cta > div { max-width: 700px; }
.final-cta h2 { margin-bottom: 12px; }
.final-cta p:last-child { margin-bottom: 0; color: rgba(255,255,255,.78); }
.final-cta .button { flex: 0 0 auto; }

.footer { color: #ede8e1; background: #211e1c; }
.footer-main {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 44px;
  padding: 52px clamp(18px,6vw,84px) 40px;
}
.footer h3, .footer strong { color: var(--white); }
.footer p, .footer address { margin: 0 0 8px; color: #bdb5ae; font-style: normal; }
.footer a:hover { color: var(--champagne); }
.footer-brand > strong { font-size: 1.2rem; }
.footer-brand > p { margin: 8px 0 12px; }
.legal-links, .footer-navigation { display: grid; gap: 5px; margin-top: 14px; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  padding: 18px clamp(18px,6vw,84px) 24px;
  border-top: 1px solid rgba(255,255,255,.1);
  color: #928a83;
  font-size: .8rem;
}
.footer-bottom span { max-width: 760px; }
.footer-bottom .producer { color: #d7c2aa; white-space: nowrap; }

.cookie-banner {
  position: fixed;
  z-index: 40;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  max-width: 760px;
  margin-left: auto;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow);
}
.cookie-banner.is-visible { display: flex; }
.cookie-banner p { margin: 0; color: var(--muted); font-size: .9rem; }
.cookie-banner button {
  flex: 0 0 auto;
  padding: 9px 16px;
  border: 0;
  border-radius: 999px;
  color: var(--white);
  background: var(--royal-dark);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.legal-page { min-height: 100vh; background: var(--surface); }
.legal-header { padding: 22px clamp(18px,6vw,84px); background: var(--white); border-bottom: 1px solid var(--line); }
.legal-header .brand { color: var(--ink); }
.legal-content { max-width: 860px; margin: 0 auto; padding: 64px 22px 90px; }
.legal-content h1 { font-size: clamp(2.2rem,5vw,4rem); }
.legal-content h2 { margin-top: 38px; font-size: 1.5rem; }
.legal-content p, .legal-content li { color: var(--muted); }
.legal-content .updated { color: var(--royal-dark); font-weight: 700; }

@media (max-width: 920px) {
  .nav { display: none; }
  .site-header { grid-template-columns: 1fr auto; }
  .procedure-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .intro, .assessment { grid-template-columns: 1fr; }
  .assessment-image { min-height: 360px; }
  .assessment-image img { min-height: 360px; }
  .footer-main { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .hero { min-height: 94vh; }
  .brand-mark { width: 42px; height: 42px; }
  .header-action { padding: 8px 14px; }
  .procedure-grid { grid-template-columns: 1fr; }
  .procedure-media { height: 235px; }
  .final-cta, .footer-bottom, .cookie-banner { align-items: stretch; flex-direction: column; }
  .final-cta .button { width: 100%; }
  .footer-main { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom .producer { white-space: normal; }
}
