:root {
  --ink: #12202c;
  --ink-2: #263949;
  --muted: #627383;
  --line: #dbe3e8;
  --paper: #faf4f6;
  --white: #ffffff;
  --accent: #b44b60;
  --accent-dark: #9c3d50;
  --navy: #30151d;
  --navy-2: #4c2330;
  --sage: #f4dde3;
  --shadow: 0 24px 70px rgba(10, 34, 51, .12);
  --radius: 22px;
  --container: 1180px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input { font: inherit; }
button { cursor: pointer; }
.container { width: min(calc(100% - 40px), var(--container)); margin: 0 auto; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--accent); font-weight: 800; font-size: .76rem;
  letter-spacing: .14em; text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 28px; height: 2px; background: currentColor; }
h1, h2, h3 { margin: 0; font-family: Georgia, "Times New Roman", serif; letter-spacing: -.035em; }
h1 { font-size: clamp(3.2rem, 6.9vw, 6.8rem); line-height: .93; }
h2 { font-size: clamp(2.35rem, 4.3vw, 4.45rem); line-height: 1.02; }
h3 { font-size: 1.48rem; line-height: 1.16; }
p { color: var(--muted); font-size: 1.03rem; line-height: 1.78; }
.lead { font-size: clamp(1.08rem, 1.5vw, 1.28rem); line-height: 1.7; }
.btn {
  min-height: 54px; display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  padding: 0 22px; border: 1px solid transparent; border-radius: 999px;
  font-weight: 800; transition: transform .25s ease, background .25s ease, border-color .25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: #fff; background: var(--accent); box-shadow: 0 12px 30px rgba(203,61,61,.22); }
.btn-primary:hover { background: var(--accent-dark); }
.btn-light { color: var(--ink); background: #fff; }
.btn-outline { color: #fff; border-color: rgba(255,255,255,.45); background: rgba(255,255,255,.05); }
.btn-outline:hover { background: rgba(255,255,255,.12); }
.btn-dark { color: #fff; background: var(--navy); }
.icon-arrow { width: 18px; height: 18px; }

.site-header {
  position: fixed; z-index: 80; inset: 0 0 auto; height: 86px;
  color: #fff; border-bottom: 1px solid rgba(255,255,255,.14);
  transition: .3s ease;
}
.site-header.scrolled, .site-header.inner-header {
  color: var(--ink); background: rgba(255,255,255,.94); backdrop-filter: blur(16px);
  border-bottom-color: var(--line); box-shadow: 0 8px 28px rgba(11,35,50,.06);
}
.nav-wrap { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand { display: inline-flex; align-items: center; gap: 13px; font-weight: 850; letter-spacing: -.02em; }
.brand-mark { position: relative; width: 39px; height: 39px; flex: 0 0 39px; }
.brand-mark::before, .brand-mark::after { content: ""; position: absolute; border: 2px solid currentColor; }
.brand-mark::before { inset: 3px 10px 10px 3px; }
.brand-mark::after { inset: 10px 3px 3px 10px; border-color: var(--accent); }
.brand-copy small { display: block; font-size: .64rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; opacity: .72; }
.nav-links { display: flex; align-items: center; gap: 30px; font-weight: 700; font-size: .91rem; }
.nav-links a:not(.btn) { position: relative; }
.nav-links a:not(.btn)::after { content:""; position:absolute; left:0; right:100%; bottom:-8px; height:2px; background:var(--accent); transition:.25s; }
.nav-links a:not(.btn):hover::after { right:0; }
.site-header:not(.scrolled):not(.inner-header) .nav-phone { border-color: rgba(255,255,255,.4); color: #fff; }
.nav-phone { min-height: 44px; padding: 0 17px; color: var(--ink); background: transparent; border-color: currentColor; }
.menu-toggle { display: none; width: 48px; height: 48px; padding: 0; border: 1px solid currentColor; border-radius: 50%; background: transparent; color: inherit; }
.menu-toggle span { display:block; width:19px; height:2px; margin:4px auto; background:currentColor; transition:.25s; }

.hero {
  min-height: 860px; color: #fff; position: relative; overflow: hidden;
  display: flex; align-items: end; padding: 175px 0 90px;
  background: linear-gradient(90deg, rgba(5,25,40,.92) 0%, rgba(5,25,40,.69) 44%, rgba(5,25,40,.18) 78%), url('../images/hero.webp') center/cover no-repeat;
}
.hero::before { content:""; position:absolute; inset:0; background:linear-gradient(0deg,rgba(4,18,28,.52),transparent 48%); }
.hero::after { content:""; position:absolute; width:520px; height:520px; border:1px solid rgba(255,255,255,.14); border-radius:50%; right:-180px; top:120px; }
.hero-content { position:relative; z-index:2; max-width: 850px; }
.hero .eyebrow { color:#fff; opacity:.9; }
.hero h1 { max-width: 820px; margin: 26px 0 26px; }
.hero h1 em { color:#f2b8b8; font-style:normal; }
.hero .lead { color:rgba(255,255,255,.82); max-width:680px; }
.hero-actions { display:flex; gap:14px; flex-wrap:wrap; margin-top:36px; }
.hero-meta { display:grid; grid-template-columns:repeat(3,1fr); gap:0; max-width:830px; margin-top:75px; border-top:1px solid rgba(255,255,255,.22); }
.hero-meta div { padding:24px 24px 0 0; }
.hero-meta strong { display:block; font-family:Georgia,serif; font-size:2.15rem; font-weight:500; }
.hero-meta span { color:rgba(255,255,255,.65); font-size:.84rem; line-height:1.45; }

.section { padding: 120px 0; }
.section-head { display:grid; grid-template-columns:.72fr 1.28fr; gap:70px; align-items:end; margin-bottom:58px; }
.section-head p { max-width:620px; margin:0; }
.intro-grid { display:grid; grid-template-columns:1.1fr .9fr; gap:74px; align-items:center; }
.intro-image { position:relative; min-height:610px; border-radius:var(--radius); overflow:hidden; box-shadow:var(--shadow); }
.intro-image img { width:100%; height:100%; position:absolute; object-fit:cover; }
.intro-image::after { content:""; position:absolute; inset:auto 25px 25px auto; width:155px; height:155px; border:1px solid rgba(255,255,255,.55); border-radius:50%; }
.intro-card { position:absolute; z-index:2; left:-34px; bottom:44px; width:260px; padding:26px; color:#fff; background:var(--navy); border-radius:18px; box-shadow:var(--shadow); }
.intro-card strong { display:block; font-family:Georgia,serif; font-size:2rem; font-weight:500; margin-bottom:6px; }
.intro-card span { color:rgba(255,255,255,.67); font-size:.85rem; line-height:1.55; }
.check-list { list-style:none; padding:0; margin:30px 0 0; }
.check-list li { display:flex; gap:14px; padding:14px 0; border-bottom:1px solid var(--line); color:var(--ink-2); font-weight:700; }
.check-list i { width:23px; height:23px; flex:0 0 23px; border-radius:50%; display:grid; place-items:center; color:#fff; background:var(--accent); font-style:normal; font-size:.72rem; }

.services { background:var(--paper); }
.service-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:18px; }
.service-card { min-height:340px; padding:34px; border:1px solid var(--line); border-radius:var(--radius); background:#fff; transition:.3s; }
.service-card:hover { transform:translateY(-8px); box-shadow:var(--shadow); border-color:transparent; }
.service-number { display:flex; align-items:center; justify-content:space-between; margin-bottom:70px; color:var(--accent); font-weight:850; }
.service-icon { width:50px; height:50px; display:grid; place-items:center; border-radius:50%; background:#f6e9e9; }
.service-icon svg { width:23px; height:23px; }
.service-card h3 { margin-bottom:15px; }
.service-card p { font-size:.95rem; margin:0; }

.image-break { min-height:630px; position:relative; display:flex; align-items:center; color:#fff; background:linear-gradient(90deg,rgba(4,25,40,.87),rgba(4,25,40,.35)),url('../images/presentation.webp') center/cover no-repeat; }
.image-break .content { max-width:670px; }
.image-break p { color:rgba(255,255,255,.76); max-width:600px; }
.image-break .quote-line { margin-top:36px; display:flex; gap:18px; align-items:flex-start; }
.image-break .quote-line::before { content:"“"; font-family:Georgia,serif; color:#f2b8b8; font-size:4rem; line-height:.75; }

.process-wrap { display:grid; grid-template-columns:.9fr 1.1fr; gap:80px; align-items:center; }
.process-photo { min-height:640px; position:relative; overflow:hidden; border-radius:var(--radius); background:url('../images/process.webp') center/cover; }
.process-photo::after { content:""; position:absolute; inset:0; background:linear-gradient(0deg,rgba(4,24,37,.62),transparent 60%); }
.process-photo-caption { position:absolute; z-index:2; left:30px; right:30px; bottom:30px; padding:23px; color:#fff; border:1px solid rgba(255,255,255,.28); background:rgba(8,32,49,.56); backdrop-filter:blur(12px); border-radius:16px; }
.process-photo-caption strong { display:block; font-family:Georgia,serif; font-size:1.35rem; font-weight:500; }
.process-photo-caption span { display:block; margin-top:6px; color:rgba(255,255,255,.68); font-size:.85rem; }
.steps { margin-top:34px; }
.step { display:grid; grid-template-columns:58px 1fr; gap:18px; padding:24px 0; border-top:1px solid var(--line); }
.step b { width:46px; height:46px; display:grid; place-items:center; border-radius:50%; color:#fff; background:var(--navy); }
.step h3 { font-size:1.2rem; margin-bottom:6px; }
.step p { margin:0; font-size:.93rem; line-height:1.6; }

.sectors { background:var(--navy); color:#fff; }
.sectors .section-head p { color:rgba(255,255,255,.66); }
.sectors .eyebrow { color:#f2b8b8; }
.sector-grid { display:grid; grid-template-columns:repeat(4,1fr); border-top:1px solid rgba(255,255,255,.17); border-left:1px solid rgba(255,255,255,.17); }
.sector { min-height:220px; padding:28px; border-right:1px solid rgba(255,255,255,.17); border-bottom:1px solid rgba(255,255,255,.17); }
.sector span { display:block; color:#f2b8b8; font-weight:800; font-size:.75rem; letter-spacing:.12em; text-transform:uppercase; margin-bottom:55px; }
.sector h3 { font-size:1.28rem; }
.sector p { color:rgba(255,255,255,.58); font-size:.9rem; line-height:1.58; }

.cta { padding:90px 0; position:relative; color:#fff; background:linear-gradient(90deg,rgba(8,29,45,.91),rgba(8,29,45,.54)),url('../images/cta.webp') center/cover no-repeat; }
.cta-inner { display:flex; justify-content:space-between; align-items:center; gap:40px; }
.cta h2 { max-width:720px; font-size:clamp(2.3rem,4vw,4rem); }
.cta p { color:rgba(255,255,255,.68); max-width:640px; }
.cta-actions { display:flex; flex-direction:column; align-items:flex-start; gap:12px; flex:0 0 auto; }
.cta-actions small { color:rgba(255,255,255,.65); }

.site-footer { color:#d7e0e6; background:#071c2b; padding:75px 0 26px; }
.footer-grid { display:grid; grid-template-columns:1.3fr .7fr .9fr; gap:70px; padding-bottom:55px; }
.footer-brand p { color:#8ea1af; max-width:430px; font-size:.92rem; }
.footer-title { display:block; color:#fff; font-size:.78rem; letter-spacing:.14em; text-transform:uppercase; margin-bottom:20px; }
.footer-links { display:flex; flex-direction:column; gap:12px; color:#9eb0bd; font-size:.92rem; }
.footer-links a:hover { color:#fff; }
.footer-contact { color:#9eb0bd; font-size:.92rem; line-height:1.8; }
.footer-contact strong { display:block; color:#fff; font-size:1.12rem; margin-top:8px; }
.footer-bottom { display:flex; align-items:center; justify-content:space-between; gap:20px; padding-top:24px; border-top:1px solid rgba(255,255,255,.12); color:#718796; font-size:.8rem; }

.cookie-banner { position:fixed; z-index:100; left:20px; right:20px; bottom:20px; display:none; max-width:1160px; margin:auto; padding:22px; color:#fff; background:rgba(7,28,43,.97); backdrop-filter:blur(14px); border:1px solid rgba(255,255,255,.15); border-radius:18px; box-shadow:0 20px 70px rgba(0,0,0,.3); }
.cookie-banner.show { display:flex; align-items:center; justify-content:space-between; gap:28px; animation:cookieIn .35s ease; }
.cookie-banner p { margin:0; color:rgba(255,255,255,.72); font-size:.86rem; line-height:1.55; }
.cookie-banner p strong { display:block; color:#fff; font-size:1rem; margin-bottom:4px; }
.cookie-actions { display:flex; flex-wrap:wrap; justify-content:flex-end; gap:9px; flex:0 0 auto; }
.cookie-actions .btn { min-height:43px; padding:0 16px; font-size:.8rem; }
.cookie-link { color:#fff; text-decoration:underline; text-underline-offset:3px; }
@keyframes cookieIn { from{opacity:0;transform:translateY(20px)} to{opacity:1;transform:none} }
.cookie-modal { position:fixed; z-index:110; inset:0; display:none; place-items:center; padding:20px; background:rgba(3,17,27,.72); }
.cookie-modal.open { display:grid; }
.cookie-panel { width:min(100%,620px); max-height:calc(100vh - 40px); overflow:auto; padding:30px; background:#fff; border-radius:22px; box-shadow:var(--shadow); }
.cookie-panel-head { display:flex; justify-content:space-between; gap:20px; align-items:flex-start; }
.cookie-close { width:42px; height:42px; border:1px solid var(--line); border-radius:50%; background:#fff; }
.cookie-option { display:flex; justify-content:space-between; gap:20px; padding:18px 0; border-top:1px solid var(--line); }
.cookie-option strong { display:block; margin-bottom:5px; }
.cookie-option p { margin:0; font-size:.85rem; line-height:1.5; }
.switch { width:48px; height:27px; position:relative; flex:0 0 48px; }
.switch input { opacity:0; width:0; height:0; }
.slider { position:absolute; inset:0; border-radius:999px; background:#bec8ce; transition:.2s; }
.slider::before { content:""; position:absolute; width:21px; height:21px; left:3px; top:3px; border-radius:50%; background:#fff; transition:.2s; box-shadow:0 2px 7px rgba(0,0,0,.17); }
.switch input:checked + .slider { background:var(--accent); }
.switch input:checked + .slider::before { transform:translateX(21px); }
.switch input:disabled + .slider { opacity:.7; }
.cookie-modal-actions { display:flex; gap:10px; justify-content:flex-end; margin-top:20px; }

.legal-hero { padding:180px 0 75px; color:#fff; background:linear-gradient(90deg,rgba(6,27,42,.94),rgba(6,27,42,.62)),url('../images/workshop.webp') center/cover; }
.legal-hero h1 { font-size:clamp(3rem,5.4vw,5rem); max-width:800px; margin-top:20px; }
.legal-hero p { max-width:700px; color:rgba(255,255,255,.74); }
.legal-wrap { display:grid; grid-template-columns:280px 1fr; gap:65px; padding:80px 0 110px; align-items:start; }
.legal-nav { position:sticky; top:115px; padding:22px; border:1px solid var(--line); border-radius:17px; background:var(--paper); }
.legal-nav strong { display:block; margin-bottom:14px; }
.legal-nav a { display:block; padding:9px 0; color:var(--muted); font-size:.88rem; border-bottom:1px solid var(--line); }
.legal-nav a:last-child { border-bottom:0; }
.legal-nav a:hover { color:var(--accent); }
.legal-content { max-width:780px; }
.legal-content h2 { font-size:2.05rem; margin:50px 0 15px; padding-top:15px; }
.legal-content h2:first-child { margin-top:0; }
.legal-content h3 { font-family:Inter,sans-serif; font-size:1.1rem; letter-spacing:-.01em; margin:28px 0 8px; }
.legal-content p, .legal-content li { color:#526575; font-size:.96rem; line-height:1.72; }
.legal-content ul { padding-left:20px; }
.legal-box { padding:24px; margin:22px 0; border-left:4px solid var(--accent); background:var(--paper); border-radius:0 14px 14px 0; }
.legal-table { width:100%; border-collapse:collapse; margin:20px 0; font-size:.88rem; }
.legal-table th, .legal-table td { padding:13px; text-align:left; vertical-align:top; border:1px solid var(--line); }
.legal-table th { background:var(--paper); }
.domain-chip { display:inline-flex; padding:5px 9px; border:1px solid var(--line); border-radius:7px; background:#fff; font-family:ui-monospace,monospace; font-size:.87em; }

.reveal { opacity:0; transform:translateY(22px); transition:opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity:1; transform:none; }

@media (max-width: 980px) {
  .nav-links { position:fixed; inset:86px 0 0; display:flex; flex-direction:column; align-items:flex-start; padding:40px 24px; background:#fff; color:var(--ink); transform:translateX(100%); transition:.3s; }
  .nav-links.open { transform:none; }
  .nav-links .btn { color:#fff; background:var(--navy); width:100%; }
  .menu-toggle { display:block; }
  .hero { min-height:780px; }
  .section-head, .intro-grid, .process-wrap, .legal-wrap { grid-template-columns:1fr; }
  .section-head { gap:22px; }
  .intro-grid, .process-wrap { gap:46px; }
  .service-grid { grid-template-columns:repeat(2,1fr); }
  .sector-grid { grid-template-columns:repeat(2,1fr); }
  .footer-grid { grid-template-columns:1fr 1fr; }
  .footer-brand { grid-column:1/-1; }
  .legal-nav { position:static; }
  .cookie-banner.show { align-items:flex-start; flex-direction:column; }
  .cookie-actions { justify-content:flex-start; }
}
@media (max-width: 680px) {
  .container { width:min(calc(100% - 28px), var(--container)); }
  .site-header { height:74px; }
  .nav-links { inset:74px 0 0; }
  .brand-copy { font-size:.9rem; }
  .brand-copy small { font-size:.55rem; }
  .hero { min-height:740px; padding:140px 0 48px; background-position:62% center; }
  .hero h1 { font-size:clamp(3rem,15vw,4.4rem); }
  .hero-meta { grid-template-columns:1fr; margin-top:48px; }
  .hero-meta div { padding:18px 0; border-bottom:1px solid rgba(255,255,255,.15); }
  .hero-meta strong { font-size:1.7rem; }
  .section { padding:82px 0; }
  .section-head { margin-bottom:38px; }
  .intro-image { min-height:480px; }
  .intro-card { left:15px; right:15px; width:auto; bottom:15px; }
  .service-grid, .sector-grid { grid-template-columns:1fr; }
  .service-card { min-height:300px; }
  .service-number { margin-bottom:48px; }
  .image-break { min-height:570px; background-position:58% center; }
  .process-photo { min-height:470px; }
  .cta-inner { align-items:flex-start; flex-direction:column; }
  .footer-grid { grid-template-columns:1fr; gap:42px; }
  .footer-brand { grid-column:auto; }
  .footer-bottom { align-items:flex-start; flex-direction:column; }
  .cookie-banner { left:10px; right:10px; bottom:10px; padding:17px; }
  .cookie-actions { width:100%; }
  .cookie-actions .btn { flex:1 1 140px; }
  .legal-hero { padding:140px 0 56px; }
  .legal-wrap { padding:55px 0 80px; gap:35px; }
  .legal-table { display:block; overflow-x:auto; }
  .cookie-modal-actions { flex-direction:column; }
  .cookie-modal-actions .btn { width:100%; }
}

.hero h1 em { color: color-mix(in srgb, #b44b60 40%, white); }

@supports not (color: color-mix(in srgb, red, white)) { .hero h1 em { color: #f3d1d8; } }
