:root {
  --ink: #141817;
  --ink-soft: #252a28;
  --paper: #f4f1e9;
  --paper-bright: #fbfaf6;
  --line: rgba(20, 24, 23, .16);
  --muted: #676d68;
  --accent: #d4482f;
  --accent-dark: #ad331f;
  --green: #163d39;
  --shell: min(1240px, calc(100vw - 64px));
  --display: "Oswald", Arial, sans-serif;
  --body: "Manrope", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
[id] { scroll-margin-top: 82px; }
body { margin: 0; background: var(--paper-bright); color: var(--ink); font-family: var(--body); font-size: 16px; line-height: 1.6; }
body.pw-menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
.shell, .pw-shell { width: var(--shell); margin-inline: auto; }
.section { padding: 112px 0; }
.pw-sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.pw-skip-link { position: fixed; z-index: 1000; top: 12px; left: 12px; padding: 10px 16px; background: #fff; transform: translateY(-160%); }
.pw-skip-link:focus { transform: none; }

.pw-header { position: fixed; z-index: 100; top: 0; width: 100%; color: #fff; border-bottom: 1px solid rgba(255,255,255,.16); transition: background .25s ease, color .25s ease, box-shadow .25s ease; }
.pw-header.is-scrolled { background: rgba(250,248,242,.96); color: var(--ink); box-shadow: 0 8px 40px rgba(13,20,18,.09); backdrop-filter: blur(14px); }
.pw-header__inner { min-height: 88px; display: flex; align-items: center; gap: 40px; transition: min-height .25s ease; }
.is-scrolled .pw-header__inner { min-height: 70px; }
.pw-brand { display: inline-flex; align-items: center; gap: 12px; flex: 0 0 auto; }
.pw-brand__mark { width: 38px; height: 38px; border: 6px solid var(--accent); border-radius: 50%; box-shadow: 0 -7px 0 -4px var(--accent), 0 7px 0 -4px var(--accent), 7px 0 0 -4px var(--accent), -7px 0 0 -4px var(--accent); }
.pw-brand__name { font-family: var(--display); font-size: 21px; font-weight: 600; letter-spacing: .08em; }
.pw-nav { display: flex; align-items: center; justify-content: center; gap: clamp(16px, 1.7vw, 30px); margin-left: auto; }
.pw-nav a { position: relative; font-size: 13px; font-weight: 600; white-space: nowrap; }
.pw-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -9px; height: 2px; background: var(--accent); transition: right .2s ease; }
.pw-nav a:hover::after, .pw-nav a:focus-visible::after { right: 0; }
.pw-header__actions { display: flex; align-items: center; gap: 16px; }
.pw-header__phone { font-size: 13px; font-weight: 700; white-space: nowrap; }
.pw-header__cta { padding: 11px 16px; border: 1px solid currentColor; font-size: 12px; font-weight: 700; white-space: nowrap; transition: background .2s, color .2s; }
.pw-header__cta:hover { background: #fff; color: var(--ink); }
.is-scrolled .pw-header__cta:hover { background: var(--ink); color: #fff; }
.pw-menu-toggle { display: none; width: 44px; height: 44px; border: 0; background: transparent; padding: 10px; }
.pw-menu-toggle span:not(.pw-sr-only) { display: block; width: 24px; height: 2px; margin: 5px 0; background: currentColor; transition: transform .2s ease, opacity .2s ease; }
.pw-menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.pw-menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.pw-menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.pw-mobile-nav { display: none; }

.hero { min-height: 760px; height: 88vh; max-height: 940px; position: relative; display: flex; align-items: stretch; overflow: hidden; color: #fff; background: var(--ink); }
.hero-media { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; transform: scale(1.035); animation: heroSettle 1.2s cubic-bezier(.2,.8,.2,1) forwards; }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(13,19,18,.16) 0%, rgba(13,19,18,.13) 43%, rgba(13,19,18,.78) 64%, rgba(13,19,18,.93) 100%); }
.hero-inner { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0,1fr) minmax(520px, .78fr); align-items: center; padding: 116px 0 42px; }
.hero-copy { grid-column: 2; max-width: 610px; }
.eyebrow, .section-kicker, .direction-number { margin: 0 0 22px; color: var(--accent); font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.hero h1 { margin: 0; font-family: var(--display); font-size: clamp(56px, 5.4vw, 88px); font-weight: 500; line-height: .95; letter-spacing: -.025em; text-transform: uppercase; }
.hero h1 span { color: #f1a294; }
.hero-lead { max-width: 580px; margin: 30px 0 0; color: rgba(255,255,255,.82); font-size: 18px; line-height: 1.6; }
.hero-actions { display: flex; gap: 12px; margin-top: 34px; }
.button { min-height: 52px; display: inline-flex; align-items: center; justify-content: center; padding: 0 24px; border: 1px solid transparent; font-weight: 700; font-size: 14px; cursor: pointer; transition: transform .2s ease, background .2s ease, color .2s ease, border .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--accent); color: #fff; }
.button-primary:hover { background: var(--accent-dark); }
.button-ghost { border-color: rgba(255,255,255,.55); color: #fff; }
.button-ghost:hover { background: #fff; color: var(--ink); }
.button-light { background: var(--paper-bright); color: var(--ink); }
.button-dark { background: var(--ink); color: #fff; }
.hero-index { position: absolute; left: 0; bottom: 66px; display: grid; grid-template-columns: 28px auto; gap: 7px 12px; align-items: baseline; color: rgba(255,255,255,.66); }
.hero-index span { color: var(--accent); font-family: var(--display); }
.hero-index strong { font-size: 12px; letter-spacing: .08em; text-transform: uppercase; }

.intro { background: var(--paper); }
.intro-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 80px; }
.intro-copy h2, .service h2, .contact h2 { max-width: 900px; margin: 0; font-family: var(--display); font-size: clamp(42px, 5vw, 72px); font-weight: 500; line-height: 1.08; text-transform: uppercase; }
.intro-copy p { max-width: 760px; margin: 30px 0 0; color: var(--muted); font-size: 18px; }

.direction { padding: 128px 0; overflow: hidden; }
.direction-primary { background: var(--paper-bright); }
.direction-grid { display: grid; grid-template-columns: minmax(0,.9fr) minmax(420px,1.1fr); align-items: center; gap: clamp(64px,8vw,130px); }
.direction-grid-reverse { grid-template-columns: minmax(420px,1.08fr) minmax(0,.92fr); }
.direction-copy h2 { margin: 0 0 28px; font-family: var(--display); font-size: clamp(68px, 8vw, 126px); font-weight: 500; line-height: .9; text-transform: uppercase; }
.direction-lead { margin: 0 0 24px; font-size: clamp(20px,2vw,27px); line-height: 1.4; }
.direction-copy > p:not(.direction-number):not(.direction-lead) { color: rgba(255,255,255,.7); }
.clean-list { padding: 0; margin: 30px 0; list-style: none; border-top: 1px solid var(--line); }
.clean-list li { padding: 15px 0; border-bottom: 1px solid var(--line); }
.inline-actions { display: flex; flex-wrap: wrap; gap: 10px 24px; margin-top: 32px; }
.text-link { display: inline-flex; gap: 12px; align-items: center; padding-bottom: 5px; border-bottom: 1px solid currentColor; font-weight: 700; font-size: 14px; }
.text-link span, .case-link span { color: var(--accent); }
.direction-visual { margin: 0; }
.image-frame { position: relative; min-height: 580px; overflow: hidden; background: #e7e5df; }
.image-frame > img { width: 100%; height: 100%; min-height: 580px; object-fit: cover; transition: transform .6s cubic-bezier(.2,.7,.2,1); }
.image-frame:hover > img { transform: scale(1.025); }
.product-stage { display: grid; place-items: center; background: radial-gradient(circle at 50% 42%, #fff 0 30%, #e9e7e0 68%, #ddd9d0 100%); }
.product-stage > img { width: 76%; height: 76%; min-height: 0; object-fit: contain; mix-blend-mode: multiply; }
.image-note { position: absolute; right: 24px; bottom: 22px; display: flex; flex-direction: column; align-items: flex-end; }
.image-note span { color: var(--accent); font-family: var(--display); font-size: 28px; }
.image-note small { color: var(--muted); }

.task-strip { background: var(--ink); color: #fff; }
.task-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.task-grid a { position: relative; min-height: 190px; padding: 32px 26px; border-left: 1px solid rgba(255,255,255,.12); display: flex; flex-direction: column; justify-content: flex-end; transition: background .25s; }
.task-grid a:last-child { border-right: 1px solid rgba(255,255,255,.12); }
.task-grid a:hover { background: var(--accent); }
.task-grid span { position: absolute; top: 24px; color: rgba(255,255,255,.45); font-family: var(--display); }
.task-grid strong { font-family: var(--display); font-size: 24px; font-weight: 500; text-transform: uppercase; }
.task-grid small { color: rgba(255,255,255,.56); }
.task-grid a:hover small, .task-grid a:hover span { color: rgba(255,255,255,.85); }

.direction-dark { background: var(--green); color: #fff; }
.grecon-stage { min-height: 620px; }
.grecon-stage img { min-height: 620px; }
.proof-line { display: grid; grid-template-columns: 150px 1fr; gap: 18px; margin: 32px 0; padding: 22px 0; border-top: 1px solid rgba(255,255,255,.2); border-bottom: 1px solid rgba(255,255,255,.2); }
.proof-line strong { color: #f1a294; font-size: 13px; text-transform: uppercase; letter-spacing: .08em; }
.proof-line span { color: rgba(255,255,255,.78); }
.case-link { display: flex; gap: 10px; margin-top: 26px; color: rgba(255,255,255,.85); font-size: 14px; font-weight: 700; }

.direction-auto { background: #e5ded0; }
.direction-auto .direction-copy h2 { max-width: 740px; font-size: clamp(48px,4.8vw,76px); line-height: .98; }
.auto-steps { margin: 32px 0; border-top: 1px solid var(--line); }
.auto-steps > div { display: grid; grid-template-columns: 42px 1fr; gap: 16px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.auto-steps span { color: var(--accent); font-family: var(--display); }
.auto-steps p { margin: 0; }
.auto-stage { display: grid; place-items: center; background: linear-gradient(145deg, #faf8f2, #d5cbb8); }
.auto-stage img { width: 82%; height: 82%; min-height: 0; object-fit: contain; mix-blend-mode: multiply; }
.auto-caption { position: absolute; left: 24px; bottom: 22px; font-family: var(--display); font-size: 18px; letter-spacing: .08em; }

.service { background: var(--paper-bright); }
.service-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 60px; }
.service-head h2 { max-width: 880px; font-size: clamp(40px,4.4vw,66px); }
.process { display: grid; grid-template-columns: repeat(4,1fr); margin-top: 72px; border-top: 1px solid var(--line); }
.process-item { min-height: 260px; padding: 28px 28px 0 0; border-right: 1px solid var(--line); }
.process-item + .process-item { padding-left: 28px; }
.process-item span { color: var(--accent); font-family: var(--display); }
.process-item h3 { margin: 48px 0 12px; font-family: var(--display); font-size: 26px; font-weight: 500; text-transform: uppercase; }
.process-item p { color: var(--muted); font-size: 14px; }

.contact { padding: 112px 0; background: var(--ink); color: #fff; }
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(60px,9vw,140px); }
.contact-copy > p:not(.section-kicker) { color: rgba(255,255,255,.65); font-size: 18px; }
.direct-contacts { display: flex; flex-direction: column; gap: 7px; margin-top: 44px; font-family: var(--display); font-size: 26px; }
.lead-form { display: grid; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.lead-form label { display: grid; gap: 7px; color: rgba(255,255,255,.65); font-size: 12px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.lead-form input, .lead-form select, .lead-form textarea { width: 100%; color: #fff; background: transparent; border: 0; border-bottom: 1px solid rgba(255,255,255,.28); border-radius: 0; padding: 10px 0; outline: none; }
.lead-form input:focus, .lead-form select:focus, .lead-form textarea:focus { border-color: var(--accent); }
.lead-form select option { color: var(--ink); }
.lead-form textarea { resize: vertical; }
.lead-form .consent { display: flex; grid-template-columns: none; flex-direction: row; align-items: flex-start; gap: 10px; text-transform: none; letter-spacing: 0; font-weight: 500; }
.consent input { width: 18px; height: 18px; margin: 3px 0 0; accent-color: var(--accent); }
.consent a { text-decoration: underline; }
.lead-form .button { justify-self: start; border: 0; }
.form-status { min-height: 24px; margin: 0; color: #f1a294; font-size: 14px; }

.pw-footer { padding: 72px 0 26px; background: #0c0f0e; color: #fff; }
.pw-footer__grid { display: grid; grid-template-columns: 1.5fr .7fr .9fr 1fr; gap: 48px; }
.pw-brand--footer { margin-bottom: 18px; }
.pw-footer__grid p { max-width: 320px; color: rgba(255,255,255,.5); font-size: 14px; }
.pw-footer__links, .pw-footer__contact { display: flex; flex-direction: column; gap: 10px; color: rgba(255,255,255,.68); font-size: 14px; }
.pw-footer__contact { color: #fff; font-family: var(--display); font-size: 20px; }
.pw-footer__bottom { display: flex; justify-content: space-between; margin-top: 60px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.38); font-size: 12px; }

.reveal { opacity: 1; transform: none; }
@keyframes heroSettle { to { transform: scale(1); } }

@media (max-width: 1120px) {
  .pw-nav { display: none; }
  .pw-header__inner { justify-content: space-between; }
  .pw-header__actions { margin-left: auto; }
  .pw-menu-toggle { display: block; color: currentColor; }
  .pw-mobile-nav { position: fixed; inset: 70px 0 0; max-height: calc(100vh - 70px); align-content: start; overflow: auto; display: grid; background: var(--paper-bright); color: var(--ink); padding: 24px 32px 34px; transform: translateY(-130%); transition: transform .28s ease; box-shadow: 0 18px 50px rgba(0,0,0,.18); }
  .pw-mobile-nav.is-open { transform: none; }
  .pw-mobile-nav a { padding: 12px 0; border-bottom: 1px solid var(--line); font-family: var(--display); font-size: 22px; text-transform: uppercase; }
  .pw-mobile-nav .pw-mobile-nav__phone { margin-top: 14px; color: var(--accent); border: 0; }
  .hero-inner { grid-template-columns: .7fr 1fr; }
  .task-grid { grid-template-columns: repeat(2,1fr); }
  .task-grid a:nth-child(2) { border-right: 1px solid rgba(255,255,255,.12); }
  .process { grid-template-columns: repeat(2,1fr); }
  .process-item { border-bottom: 1px solid var(--line); }
}

@media (max-width: 820px) {
  :root { --shell: min(100% - 36px, 680px); }
  .section, .direction, .contact { padding: 76px 0; }
  .pw-header__inner { min-height: 70px; }
  [id] { scroll-margin-top: 74px; }
  .pw-header__phone, .pw-header__cta { display: none; }
  .hero { min-height: 700px; height: 100svh; max-height: none; }
  .hero-media { object-position: 32% center; }
  .hero-shade { background: linear-gradient(180deg, rgba(10,14,13,.25), rgba(10,14,13,.68) 48%, rgba(10,14,13,.96) 78%); }
  .hero-inner { display: flex; align-items: flex-end; padding: 118px 0 44px; }
  .hero-copy { max-width: 100%; }
  .hero h1 { font-size: clamp(50px,14vw,78px); }
  .hero-lead { margin-top: 22px; font-size: 16px; }
  .hero-index { display: none; }
  .intro-grid, .direction-grid, .direction-grid-reverse, .contact-grid { grid-template-columns: 1fr; gap: 46px; }
  .intro-copy h2, .service h2, .contact h2 { font-size: clamp(38px,10vw,58px); }
  .direction-copy h2 { font-size: clamp(66px,20vw,102px); }
  .direction-auto .direction-copy h2 { font-size: clamp(46px,13vw,70px); }
  .direction-visual { order: -1; }
  .direction-primary .direction-visual, .direction-auto .direction-visual { order: 0; }
  .image-frame, .image-frame > img { min-height: 470px; }
  .grecon-stage, .grecon-stage img { min-height: 470px; }
  .service-head { display: grid; gap: 28px; }
  .pw-footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 520px) {
  :root { --shell: calc(100vw - 28px); }
  .pw-brand__name { font-size: 18px; }
  .pw-brand__mark { width: 32px; height: 32px; border-width: 5px; }
  .hero { min-height: 680px; }
  .hero-media { object-position: 26% center; }
  .hero h1 { font-size: clamp(46px,13.8vw,66px); }
  .eyebrow { max-width: 300px; margin-bottom: 16px; font-size: 10px; }
  .hero-actions { display: grid; grid-template-columns: 1fr; }
  .button { width: 100%; }
  .task-grid { grid-template-columns: 1fr; }
  .task-grid a { min-height: 150px; border-right: 1px solid rgba(255,255,255,.12); }
  .image-frame, .image-frame > img, .grecon-stage, .grecon-stage img { min-height: 390px; }
  .proof-line { grid-template-columns: 1fr; gap: 8px; }
  .process { grid-template-columns: 1fr; }
  .process-item, .process-item + .process-item { min-height: 0; padding: 24px 0 28px; border-right: 0; }
  .process-item h3 { margin-top: 24px; }
  .form-row { grid-template-columns: 1fr; }
  .pw-footer__grid { grid-template-columns: 1fr; gap: 30px; }
  .pw-footer__bottom { display: grid; gap: 10px; }
}

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

.pw-honeypot{position:absolute!important;left:-10000px!important;width:1px!important;height:1px!important;overflow:hidden!important}
